We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 636b631 commit cc4f9abCopy full SHA for cc4f9ab
.eslintrc.js
@@ -1,17 +1,18 @@
1
module.exports = {
2
- "env": {
3
- "es6": true,
4
- "node": true
5
- },
6
- "extends": "eslint:recommended",
7
- "globals": {
8
- "Atomics": "readonly",
9
- "SharedArrayBuffer": "readonly"
10
11
- "parserOptions": {
12
- "ecmaVersion": 2018,
13
- "sourceType": "module"
14
15
- "rules": {
16
- }
17
-};
+ env: {
+ es6: true,
+ node: true
+ },
+ extends: "eslint:recommended",
+ globals: {
+ Atomics: "readonly",
+ SharedArrayBuffer: "readonly"
+ parserOptions: {
+ ecmaVersion: 2018,
+ sourceType: "module"
+ rules: {
+ no-trailing-spaces: ["error"]
+ }
18
+};
0 commit comments