mirror of
https://github.com/edward-shen/MMM-pages.git
synced 2024-12-22 00:35:09 -08:00
Replace deprecated ESLint config by flat config (incl. replacing airbnb plugin)
This commit is contained in:
parent
430c84e41d
commit
ce58e1bc60
2 changed files with 40 additions and 14 deletions
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
"extends": "airbnb-base",
|
|
||||||
"globals": {
|
|
||||||
"Module": true,
|
|
||||||
"Log": true,
|
|
||||||
"MM": true
|
|
||||||
},
|
|
||||||
"rules": {
|
|
||||||
"comma-dangle": "off",
|
|
||||||
"object-shorthand": "off",
|
|
||||||
"func-names": "off",
|
|
||||||
"space-before-function-paren": "off"
|
|
||||||
}
|
|
||||||
}
|
|
40
eslint.config.mjs
Normal file
40
eslint.config.mjs
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
import eslintPluginJs from '@eslint/js';
|
||||||
|
import eslintPluginStylistic from '@stylistic/eslint-plugin';
|
||||||
|
import globals from 'globals';
|
||||||
|
|
||||||
|
const config = [
|
||||||
|
{
|
||||||
|
files: ['**/*.js', '**/*.mjs'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
languageOptions: {
|
||||||
|
globals: {
|
||||||
|
...globals.browser,
|
||||||
|
...globals.node,
|
||||||
|
Log: 'readonly',
|
||||||
|
MM: 'readonly',
|
||||||
|
Module: 'readonly',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
plugins: {
|
||||||
|
...eslintPluginStylistic.configs['all-flat'].plugins,
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
...eslintPluginJs.configs.recommended.rules,
|
||||||
|
...eslintPluginStylistic.configs['all-flat'].rules,
|
||||||
|
'@stylistic/array-element-newline': 'off',
|
||||||
|
'@stylistic/brace-style': ['error', '1tbs', {allowSingleLine: true}],
|
||||||
|
'@stylistic/comma-dangle': ['error', 'only-multiline'],
|
||||||
|
'@stylistic/dot-location': ['error', 'property'],
|
||||||
|
'@stylistic/function-call-argument-newline': 'off',
|
||||||
|
'@stylistic/indent': ['error', 2],
|
||||||
|
'@stylistic/padded-blocks': 'off',
|
||||||
|
'@stylistic/quote-props': ['error', 'consistent-as-needed'],
|
||||||
|
'@stylistic/quotes': ['error', 'single'],
|
||||||
|
'@stylistic/multiline-comment-style': 'off',
|
||||||
|
'@stylistic/multiline-ternary': 'off',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
export default config;
|
Loading…
Reference in a new issue