Skip to content

Commit 7f7136a

Browse files
committed
build: update build tools
1 parent 3ff085e commit 7f7136a

18 files changed

+4495
-6704
lines changed

.babelrc.js

+4-13
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,12 @@
11
module.exports = {
22
presets: [
33
[
4-
'@babel/env',
4+
'@babel/preset-env',
55
{
66
loose: true,
7-
modules: false,
8-
exclude: ['transform-typeof-symbol']
7+
bugfixes: true,
8+
modules: false
99
}
1010
]
11-
],
12-
plugins: [
13-
process.env.PLUGINS && 'transform-es2015-modules-strip',
14-
['@babel/proposal-object-rest-spread', {loose: true, useBuiltIns: true}]
15-
].filter(Boolean),
16-
env: {
17-
test: {
18-
plugins: [ 'istanbul' ]
19-
}
20-
}
11+
]
2112
};

.browserslistrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# https://github.com/browserslist/browserslist#readme
2+
3+
>= 0.5%
4+
last 2 major versions
5+
not dead
6+
Chrome >= 60
7+
Firefox >= 60
8+
Firefox ESR
9+
iOS >= 12
10+
Safari >= 12
11+
not Explorer <= 11

.eslintrc.json

+19-17
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
{
22
"root": true,
3-
"parser": "babel-eslint",
43
"extends": [
54
"plugin:import/errors",
65
"plugin:import/warnings",
76
"plugin:unicorn/recommended",
8-
"xo/esnext",
7+
"xo",
98
"xo/browser"
109
],
1110
"rules": {
@@ -26,32 +25,35 @@
2625
"error",
2726
"always-multiline"
2827
],
29-
"new-cap": "off",
30-
"no-mixed-operators": "off",
31-
"object-curly-spacing": [
32-
"error",
33-
"always"
34-
],
35-
"prefer-destructuring": [
28+
"new-cap": [
3629
"error",
3730
{
38-
"object": true,
39-
"array": false
31+
"properties": false
4032
}
4133
],
34+
"no-console": "error",
35+
"object-curly-spacing": [
36+
"error",
37+
"always"
38+
],
4239
"semi": [
4340
"error",
4441
"never"
4542
],
43+
"unicorn/consistent-function-scoping": "off",
4644
"unicorn/explicit-length-check": "off",
47-
"unicorn/filename-case": "off",
48-
"unicorn/import-index": "off",
45+
"unicorn/no-array-callback-reference": "off",
46+
"unicorn/no-array-for-each": "off",
47+
"unicorn/no-for-loop": "off",
48+
"unicorn/no-null": "off",
4949
"unicorn/no-unused-properties": "error",
50-
"unicorn/prefer-includes": "off",
51-
"unicorn/prefer-node-append": "off",
52-
"unicorn/prefer-node-remove": "off",
50+
"unicorn/no-useless-undefined": "off",
51+
"unicorn/prefer-dom-node-append": "off",
52+
"unicorn/prefer-dom-node-dataset": "off",
53+
"unicorn/prefer-dom-node-remove": "off",
54+
"unicorn/prefer-module": "off",
5355
"unicorn/prefer-query-selector": "off",
54-
"unicorn/prefer-text-content": "off",
56+
"unicorn/prefer-spread": "off",
5557
"unicorn/prevent-abbreviations": "off"
5658
}
5759
}

.gitattributes

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
*.css text eol=lf
2-
*.js text eol=lf
1+
# Enforce Unix newlines
2+
* text=auto eol=lf
3+
4+
# Don't diff or textually merge source maps
5+
*.map binary

.gitignore

+42-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/.idea
2-
node_modules
3-
dist
4-
.DS_Store
5-
61
# Logs
72
logs
83
*.log
@@ -13,3 +8,45 @@ lerna-debug.log*
138

149
# eslint cache
1510
.eslintcache
11+
12+
13+
# Ignore docs files
14+
/_gh_pages/
15+
# Hugo resources folder
16+
/resources/
17+
18+
# Numerous always-ignore extensions
19+
*.diff
20+
*.err
21+
*.log
22+
*.orig
23+
*.rej
24+
*.swo
25+
*.swp
26+
*.vi
27+
*.zip
28+
*~
29+
30+
# OS or Editor folders
31+
._*
32+
.cache
33+
.DS_Store
34+
.idea
35+
.project
36+
.settings
37+
.tmproj
38+
*.esproj
39+
*.sublime-project
40+
*.sublime-workspace
41+
nbproject
42+
Thumbs.db
43+
/.vscode/
44+
45+
# Komodo
46+
.komodotools
47+
*.komodoproject
48+
49+
# Folders to ignore
50+
/dist/
51+
/js/coverage/
52+
/node_modules/

.prettierignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
# Ignore artifacts:
3+
build
4+
coverage
5+
6+
#ignore source
7+
src

.prettierrc.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"overrides": [
3+
{
4+
"files": "*.html",
5+
"options": { "parser": "html" }
6+
}
7+
]
8+
}

.stylelintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
**/*.min.css
2+
**/dist/
3+
**/vendor/

.stylelintrc

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"extends": [
3+
"stylelint-config-twbs-bootstrap/scss"
4+
],
5+
"rules": {
6+
"declaration-property-value-disallowed-list": {
7+
"border": "none",
8+
"outline": "none"
9+
},
10+
"function-disallowed-list": [
11+
"calc",
12+
"lighten",
13+
"darken"
14+
],
15+
"property-disallowed-list": [
16+
"border-radius",
17+
"border-top-left-radius",
18+
"border-top-right-radius",
19+
"border-bottom-right-radius",
20+
"border-bottom-left-radius",
21+
"transition"
22+
],
23+
"scss/dollar-variable-default": [
24+
true,
25+
{
26+
"ignore": "local"
27+
}
28+
],
29+
"scss/selector-no-union-class-name": true
30+
}
31+
}

build/.eslintrc.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,9 @@
66
"parserOptions": {
77
"sourceType": "script"
88
},
9-
"extends": "../.eslintrc.json"
9+
"extends": "../.eslintrc.json",
10+
"rules": {
11+
"no-console": "off",
12+
"strict": "error"
13+
}
1014
}

0 commit comments

Comments
 (0)