zephjs-loading
Version:
Example loading screen for working with ZephJS based applications.
35 lines (33 loc) • 503 B
JavaScript
module.exports = {
"extends": "eslint:recommended",
parserOptions: {
sourceType: "module",
ecmaVersion: 8
},
env: {
browser: true,
es6: true,
mocha: true
},
rules: {
"no-self-assign": [
"off"
],
indent: [
"error",
"tab",
{ "SwitchCase": 1 }
],
semi: [
"error",
"always"
],
"require-await": [
"error"
],
"no-constant-condition": [
"off"
]
}
};
;