forked from M3-Academy/m3-academy-template-checkout
23 lines
481 B
JavaScript
23 lines
481 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
commonjs: true,
|
|
es6: false,
|
|
jquery: true,
|
|
},
|
|
globals: {
|
|
Modulo: true,
|
|
},
|
|
extends: ["eslint:recommended", "plugin:prettier/recommended"],
|
|
plugins: ["prettier"],
|
|
parserOptions: {
|
|
ecmaVersion: 10,
|
|
sourceType: "module",
|
|
},
|
|
rules: {
|
|
"prettier/prettier": "error",
|
|
"linebreak-style": ["warn", "unix"],
|
|
"no-undef": "off",
|
|
},
|
|
};
|