Skip to content
This repository was archived by the owner on May 16, 2020. It is now read-only.

Commit 8adfb11

Browse files
feat: add in the rest of the linting rules
1 parent db0fc59 commit 8adfb11

27 files changed

+674
-128
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ root = true
22

33
[*]
44
end_of_line = lf
5-
insert_final_newline = false
5+
insert_final_newline = true
66
indent_style = space
77
indent_size = 4
88

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.js text eol=lf

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"lerna": "2.0.0-beta.38"
55
},
66
"scripts": {
7-
"copy-common-files": "node scripts/copy-common-files.js",
87
"clean": "lerna run clean",
98
"lint": "lerna run lint",
109
"npm:prune": "lerna exec -- npm prune",

packages/babel-preset-atlauncher/.editorconfig

Lines changed: 0 additions & 11 deletions
This file was deleted.

packages/babel-preset-atlauncher/.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/babel-preset-atlauncher/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ module.exports = function() {
1212
require('babel-plugin-transform-react-remove-prop-types').default
1313
]
1414
};
15-
};
15+
};

packages/eslint-config-atlauncher/.editorconfig

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
{
22
"extends": [
33
"./index.js"
4-
]
5-
}
4+
],
5+
"rules": {
6+
"import/no-commonjs": "off",
7+
"filenames/no-index": "off",
8+
"import/unambiguous": "off",
9+
"quote-props": ["error", "consistent"]
10+
}
11+
}

packages/eslint-config-atlauncher/.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/eslint-config-atlauncher/configs/electron.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ module.exports = {
22
rules: {
33
'import/core-modules': ['electron'],
44
}
5-
};
5+
};

0 commit comments

Comments
 (0)