remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/libs/remix-ui/plugin-manager/.eslintrc

20 lines
358 B

{
"env": {
"browser": true,
"es6": true
},
"extends": "../../../.eslintrc",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
3 years ago
},
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
3 years ago
},
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
3 years ago
}
}