mirror of
https://github.com/bvanroll/rpiRadio.git
synced 2025-08-30 12:32:47 +00:00
32 lines
508 B
Plaintext
32 lines
508 B
Plaintext
{
|
|
"extends": [
|
|
"eslint:recommended"
|
|
],
|
|
"env": {
|
|
"node": true,
|
|
"mocha": true
|
|
},
|
|
"globals": {
|
|
"Promise": true,
|
|
"Set": true,
|
|
"Symbol": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017
|
|
},
|
|
"plugins": [
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": ["error", {
|
|
"singleQuote": true,
|
|
"tabWidth": 2,
|
|
"printWidth": 100
|
|
}],
|
|
|
|
"no-console": 0,
|
|
"eqeqeq": ["error", "always", {"null": "ignore"}],
|
|
"strict": ["error", "global"]
|
|
}
|
|
}
|