Skip to content

Commit 156e652

Browse files
committed
Sync all files
1 parent a3c2338 commit 156e652

File tree

3 files changed

+17
-32
lines changed

3 files changed

+17
-32
lines changed
Lines changed: 8 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,14 @@
11
{
22
"root": true,
3-
"parser": "babel-eslint",
4-
"parserOptions": {
5-
"ecmaVersion": 7,
6-
"sourceType": "module"
7-
},
8-
"globals": {
9-
"BigInt": true
10-
},
3+
"extends": "@exercism/eslint-config-javascript",
114
"env": {
12-
"es6": true,
13-
"node": true,
145
"jest": true
156
},
16-
"extends": [
17-
"eslint:recommended",
18-
"plugin:import/errors",
19-
"plugin:import/warnings"
20-
],
21-
"rules": {
22-
"linebreak-style": "off",
23-
24-
"import/extensions": "off",
25-
"import/no-default-export": "off",
26-
"import/no-unresolved": "off",
27-
"import/prefer-default-export": "off"
28-
}
7+
"overrides": [
8+
{
9+
"files": [".meta/proof.ci.js", ".meta/exemplar.js", "*.spec.js"],
10+
"excludedFiles": ["custom.spec.js"],
11+
"extends": "@exercism/eslint-config-javascript/maintainers"
12+
}
13+
]
2914
}

exercises/concept/ozans-playlist/babel.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77
node: 'current',
88
},
99
useBuiltIns: 'entry',
10-
corejs: 3,
10+
corejs: '3.10',
1111
},
1212
],
1313
],

exercises/concept/ozans-playlist/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,30 @@
33
"description": "Exercism concept exercise on sets",
44
"author": "Kristina Born",
55
"private": true,
6+
"license": "MIT",
67
"repository": {
78
"type": "git",
89
"url": "https://github.com/exercism/javascript",
910
"directory": "exercises/concept/ozans-playlist"
1011
},
1112
"devDependencies": {
12-
"@babel/cli": "^7.13.14",
13-
"@babel/core": "^7.13.15",
13+
"@babel/cli": "^7.13.16",
14+
"@babel/core": "^7.13.16",
1415
"@babel/plugin-syntax-bigint": "^7.8.3",
1516
"@babel/preset-env": "^7.13.15",
17+
"@exercism/eslint-config-javascript": "^0.3.1",
1618
"@types/jest": "^26.0.22",
17-
"@types/node": "^14.14.37",
19+
"@types/node": "^14.14.41",
1820
"babel-eslint": "^10.1.0",
1921
"babel-jest": "^26.6.3",
20-
"core-js": "^3.10.1",
22+
"core-js": "^3.10.2",
2123
"eslint": "^7.24.0",
22-
"eslint-plugin-import": "^2.22.1",
2324
"jest": "^26.6.3"
2425
},
26+
"dependencies": {},
2527
"scripts": {
2628
"test": "jest --no-cache ./*",
2729
"watch": "jest --no-cache --watch ./*",
2830
"lint": "eslint ."
29-
},
30-
"license": "MIT",
31-
"dependencies": {}
31+
}
3232
}

0 commit comments

Comments
 (0)