mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-07 20:17:04 +03:00
27 lines
490 B
Plaintext
27 lines
490 B
Plaintext
{
|
|
"parser": "babel-eslint",
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"ecmaFeatures": {
|
|
"modules": true
|
|
}
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"jquery": true
|
|
} ,
|
|
"rules": {
|
|
"no-tabs": "off",
|
|
"semi": 0,
|
|
"comma-dangle": 0,
|
|
"require-jsdoc": ["off", {
|
|
"require": {
|
|
"FunctionDeclaration": true,
|
|
"MethodDefinition": false,
|
|
"ClassDeclaration": false
|
|
}
|
|
}]
|
|
}
|
|
} |