generated from nhcarrigan/template
All checks were successful
Node.js CI / Lint and Test (pull_request) Successful in 48s
20 lines
302 B
JavaScript
20 lines
302 B
JavaScript
import NaomisConfig from "@nhcarrigan/eslint-config";
|
|
import globals from "globals";
|
|
|
|
export default [
|
|
...NaomisConfig,
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser
|
|
}
|
|
}
|
|
},
|
|
{
|
|
rules: {
|
|
"no-console": "off",
|
|
"max-lines": "off"
|
|
}
|
|
}
|
|
];
|