generated from nhcarrigan/template
This is a pretty sizeable change. It also removes all external configuration sets. Every rule is now defined by us. Additionally, this version will conflict with other formatters, and should not be used in tandem with Prettier. Reviewed-on: https://codeberg.org/nhcarrigan/eslint-config/pulls/1 Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com> Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
15 lines
336 B
JavaScript
15 lines
336 B
JavaScript
import naomisRules from "./prod/index.js";
|
|
|
|
export default [
|
|
...naomisRules,
|
|
{
|
|
rules: {
|
|
"@typescript-eslint/naming-convention": "off",
|
|
"import/no-default-export": "off",
|
|
"import/namespace": "off",
|
|
"import/no-deprecated": "off",
|
|
"@typescript-eslint/consistent-type-assertions": "off"
|
|
},
|
|
},
|
|
];
|