UPD: ESLint & Prettier compatability

disabled eslint indent rule
lint-fixed some files
increased printWidth to 120
This commit is contained in:
Robert Kossessa
2024-01-22 16:35:37 +01:00
parent 4a9c57aa55
commit d54f22eb2b
5 changed files with 1068 additions and 960 deletions

View File

@@ -67,6 +67,7 @@
}
},
"rules": {
"indent": "off",
"camelcase": "off",
"space-before-function-paren": "off",
"object-curly-spacing": "off",
@@ -94,5 +95,12 @@
]
}
},
"prettier": {
"trailingComma": "es5",
"printWidth": 120,
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"type": "module"
}