mirror of
https://github.com/jakejarvis/dark-mode.git
synced 2025-04-25 14:05:22 -04:00
19 lines
298 B
JSON
19 lines
298 B
JSON
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:compat/recommended"
|
|
],
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2015,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"quotes": ["error", "double"],
|
|
"semi": ["error", "always"]
|
|
}
|
|
}
|