mirror of
https://github.com/netbymatt/ws4kp.git
synced 2026-04-21 19:19:31 -07:00
eslint cleanup after mjs switch
This commit is contained in:
91
.eslintrc
Normal file
91
.eslintrc
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
{
|
||||||
|
"env": {
|
||||||
|
"browser": true,
|
||||||
|
"es6": true,
|
||||||
|
"node": true,
|
||||||
|
"jquery": true
|
||||||
|
},
|
||||||
|
"extends": [
|
||||||
|
"airbnb-base"
|
||||||
|
],
|
||||||
|
"globals": {
|
||||||
|
"TravelCities": "readonly",
|
||||||
|
"RegionalCities": "readonly",
|
||||||
|
"StationInfo": "readonly",
|
||||||
|
"SunCalc": "readonly"
|
||||||
|
},
|
||||||
|
"parserOptions": {
|
||||||
|
"ecmaVersion": 2023,
|
||||||
|
"sourceType": "module"
|
||||||
|
},
|
||||||
|
"plugins": [],
|
||||||
|
"rules": {
|
||||||
|
"indent": [
|
||||||
|
"error",
|
||||||
|
"tab",
|
||||||
|
{
|
||||||
|
"SwitchCase": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"no-tabs": 0,
|
||||||
|
"no-console": 0,
|
||||||
|
"max-len": 0,
|
||||||
|
"no-use-before-define": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"variables": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"no-param-reassign": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"props": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"no-mixed-operators": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"groups": [
|
||||||
|
[
|
||||||
|
"&",
|
||||||
|
"|",
|
||||||
|
"^",
|
||||||
|
"~",
|
||||||
|
"<<",
|
||||||
|
">>",
|
||||||
|
">>>"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"==",
|
||||||
|
"!=",
|
||||||
|
"===",
|
||||||
|
"!==",
|
||||||
|
">",
|
||||||
|
">=",
|
||||||
|
"<",
|
||||||
|
"<="
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"&&",
|
||||||
|
"||"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"in",
|
||||||
|
"instanceof"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"allowSamePrecedence": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"import/extensions": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
"mjs": "always",
|
||||||
|
"json": "always"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"ignorePatterns": [
|
||||||
|
"*.min.js"
|
||||||
|
]
|
||||||
|
}
|
||||||
74
.eslintrc.js
74
.eslintrc.js
@@ -1,74 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
env: {
|
|
||||||
browser: true,
|
|
||||||
commonjs: true,
|
|
||||||
es6: true,
|
|
||||||
node: true,
|
|
||||||
jquery: true,
|
|
||||||
},
|
|
||||||
extends: [
|
|
||||||
'airbnb-base',
|
|
||||||
],
|
|
||||||
globals: {
|
|
||||||
Atomics: 'readonly',
|
|
||||||
SharedArrayBuffer: 'readonly',
|
|
||||||
StationInfo: 'readonly',
|
|
||||||
RegionalCities: 'readonly',
|
|
||||||
TravelCities: 'readonly',
|
|
||||||
NoSleep: 'readonly',
|
|
||||||
states: 'readonly',
|
|
||||||
SunCalc: 'readonly',
|
|
||||||
|
|
||||||
},
|
|
||||||
parserOptions: {
|
|
||||||
ecmaVersion: 2023,
|
|
||||||
},
|
|
||||||
plugins: [
|
|
||||||
],
|
|
||||||
rules: {
|
|
||||||
indent: [
|
|
||||||
'error',
|
|
||||||
'tab',
|
|
||||||
{
|
|
||||||
SwitchCase: 1
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'no-tabs': 0,
|
|
||||||
'no-console': 0,
|
|
||||||
'max-len': 0,
|
|
||||||
'no-use-before-define': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
variables: false,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'no-param-reassign': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
props: false,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'no-mixed-operators': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
groups: [
|
|
||||||
['&', '|', '^', '~', '<<', '>>', '>>>'],
|
|
||||||
['==', '!=', '===', '!==', '>', '>=', '<', '<='],
|
|
||||||
['&&', '||'],
|
|
||||||
['in', 'instanceof'],
|
|
||||||
],
|
|
||||||
allowSamePrecedence: true,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'import/extensions': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
mjs: 'always',
|
|
||||||
json: 'always',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
ignorePatterns: [
|
|
||||||
'*.min.js',
|
|
||||||
],
|
|
||||||
};
|
|
||||||
Reference in New Issue
Block a user