mirror of
https://github.com/LeoYeAI/openclaw-master-skills.git
synced 2026-07-27 22:15:43 +00:00
- Added 175 new high-quality skills across all categories - 14 distinct categories: AI, Search, Productivity, Dev, Marketing, Media, Finance, Communication, Smart Home, Memory, Security, Data, Social, Other - Updated all language READMEs and SKILL.md - Weekly update by MyClaw.ai
32 lines
559 B
JavaScript
32 lines
559 B
JavaScript
const js = require('@eslint/js');
|
|
const {
|
|
baseRules,
|
|
testRules,
|
|
nodeGlobals,
|
|
testGlobals,
|
|
ignores,
|
|
} = require('../_config/eslint.base.js');
|
|
|
|
module.exports = [
|
|
js.configs.recommended,
|
|
{
|
|
files: ['src/**/*.js'],
|
|
languageOptions: {
|
|
ecmaVersion: 2022,
|
|
sourceType: 'commonjs',
|
|
globals: nodeGlobals,
|
|
},
|
|
rules: baseRules,
|
|
},
|
|
{
|
|
files: ['tests/**/*.js'],
|
|
languageOptions: {
|
|
ecmaVersion: 2022,
|
|
sourceType: 'module',
|
|
globals: testGlobals,
|
|
},
|
|
rules: testRules,
|
|
},
|
|
{ ignores },
|
|
];
|