generated from nhcarrigan/template
14 lines
223 B
JavaScript
14 lines
223 B
JavaScript
|
import NaomisConfig from "@nhcarrigan/eslint-config";
|
||
|
import globals from "globals";
|
||
|
|
||
|
export default [
|
||
|
...NaomisConfig,
|
||
|
{
|
||
|
languageOptions: {
|
||
|
globals: {
|
||
|
...globals.browser
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
];
|