Skip to content

Commit d12ca27

Browse files
author
David Narbutovich
committed
rename all configs files to .js ext
1 parent 72024d0 commit d12ca27

File tree

6 files changed

+22
-39
lines changed

6 files changed

+22
-39
lines changed

.babelrc

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

.babelrc.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module.exports = {
2+
presets: [
3+
[
4+
"env",
5+
{
6+
targets: {
7+
node: ["6.0.0"]
8+
}
9+
}
10+
]
11+
],
12+
plugins: ["babel-plugin-add-module-exports"]
13+
};

.lintstagedrc

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

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,4 @@ before_script:
2424
after_script:
2525
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
2626

27-
cache:
28-
yarn: true
29-
directories:
30-
- node_modules
27+
cache: yarn

appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,4 @@ test_script:
3333
- yarn test
3434

3535
cache:
36-
- node_modules
37-
- "%LOCALAPPDATA%/Yarn"
36+
- node_modules -> appveyor.yml,yarn.lock

lint-staged.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
linters: {
3+
"./**/*.js": ["prettier", "eslint --fix", "git add"],
4+
"./**/*.css": ["prettier", "git add"]
5+
},
6+
ignore: ["test/e2e/**/*.test.js"]
7+
};

0 commit comments

Comments
 (0)