2021-08-28 06:55:59 +00:00
|
|
|
env:
|
2021-08-30 04:07:34 +00:00
|
|
|
commonjs: false
|
2021-08-28 06:55:59 +00:00
|
|
|
browser: true
|
|
|
|
es2021: true
|
|
|
|
jquery: true
|
2021-08-30 10:30:44 +00:00
|
|
|
extends:
|
2023-05-30 12:55:53 +00:00
|
|
|
- eslint:recommended
|
2021-08-28 06:55:59 +00:00
|
|
|
parserOptions:
|
|
|
|
ecmaVersion: 12
|
2021-08-30 11:25:43 +00:00
|
|
|
rules:
|
2021-08-30 12:28:01 +00:00
|
|
|
no-var: off
|
|
|
|
guard-for-in: off
|
|
|
|
no-trailing-spaces: off
|
|
|
|
camelcase: off
|
|
|
|
padded-blocks: off
|
|
|
|
prefer-const: off
|
|
|
|
max-len: off
|
2021-09-03 12:54:17 +00:00
|
|
|
require-jsdoc: off
|
|
|
|
valid-jsdoc: off
|
|
|
|
no-multiple-empty-lines: off
|
|
|
|
comma-dangle: off
|
2023-05-30 12:55:53 +00:00
|
|
|
no-unused-vars: off
|
|
|
|
no-useless-escape: off
|
2021-09-03 12:54:17 +00:00
|
|
|
prefer-spread: off
|
2021-08-30 11:21:26 +00:00
|
|
|
indent:
|
2021-08-30 11:30:10 +00:00
|
|
|
- error
|
2021-08-30 11:21:26 +00:00
|
|
|
- 4
|