ESPAsyncWebServer/examples/SmartSwitch/data_src/js_css_src/styled-notifications/.eslintrc.js

31 lines
575 B
JavaScript
Raw Permalink Normal View History

module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"windows"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": 0,
"no-undef": 0
}
};