more prettier removals

This commit is contained in:
zadam 2024-03-06 06:48:25 +01:00
parent 6f1e6402f0
commit f46ce0417d
3 changed files with 200 additions and 218 deletions

View file

@ -5,8 +5,7 @@ module.exports = {
es2021: true,
node: true,
},
// plugins: ['prettier'], // to be activated
extends: ['eslint:recommended', 'airbnb-base', 'plugin:jsonc/recommended-with-jsonc', 'prettier'],
extends: ['eslint:recommended', 'airbnb-base', 'plugin:jsonc/recommended-with-jsonc'],
overrides: [
{
files: ['*.json', '*.json5', '*.jsonc'],
@ -111,7 +110,7 @@ module.exports = {
__non_webpack_require__: true,
describe: true,
it: true,
expect: true
expect: true,
},
parserOptions: {
ecmaVersion: 'latest',
@ -130,9 +129,6 @@ module.exports = {
'no-extra-semi': 'off',
'no-inner-declarations': 'off',
// prettier
'prettier/prettier': ['off', { endOfLine: 'auto' }],
// airbnb-base
'no-console': 'off',
'no-plusplus': 'off',
@ -207,6 +203,6 @@ module.exports = {
'import/no-named-as-default-member': 'off',
yoda: 'off',
'no-script-url': 'off',
'no-prototype-builtins':'off'
'no-prototype-builtins': 'off',
},
};

View file

@ -1,13 +0,0 @@
//https://prettier.io/docs/en/options.html
module.exports = {
semi: true,
trailingComma: 'none',
singleQuote: true,
printWidth: 100,
tabWidth: 4,
useTabs: false,
quoteProps: "as-needed",
bracketSpacing: true,
arrowParens: "avoid"
// htmlWhitespaceSensitivity: 'ignore',
};

View file

@ -1,6 +1,5 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
]
}