16 lines
383 B
JavaScript
16 lines
383 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: { webextensions: true },
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
plugins: ["@typescript-eslint"],
|
||
|
extends: [
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"prettier/@typescript-eslint",
|
||
|
],
|
||
|
rules: {
|
||
|
"@typescript-eslint/no-non-null-assertion": "off",
|
||
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
||
|
},
|
||
|
};
|