2022-02-12 23:07:11 +01:00
|
|
|
{
|
2022-08-13 15:12:53 +02:00
|
|
|
"plugins": ["prettier", "simple-import-sort"],
|
|
|
|
"extends": ["standard-with-typescript", "prettier"],
|
|
|
|
"env": {
|
|
|
|
"node": true,
|
|
|
|
"browser": true,
|
|
|
|
"jest": true
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": "latest",
|
|
|
|
"project": ["./tsconfig.json"]
|
|
|
|
},
|
|
|
|
"ignorePatterns": ["out", "**/*.config.js", "**/*.d.ts", "plopfile.js"],
|
2022-03-17 11:47:20 +01:00
|
|
|
"rules": {
|
|
|
|
"prettier/prettier": "error",
|
2022-08-13 15:12:53 +02:00
|
|
|
"simple-import-sort/imports": "error",
|
|
|
|
"simple-import-sort/exports": "error",
|
|
|
|
"@next/next/no-img-element": "off"
|
2022-03-17 11:47:20 +01:00
|
|
|
}
|
2022-02-12 23:07:11 +01:00
|
|
|
}
|