Skip to content

Commit c79fba9

Browse files
updated: add the foundation for the next release
1 parent 5f29904 commit c79fba9

36 files changed

+230
-4254
lines changed

.codeclimate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ engines:
44

55
ratings:
66
paths:
7-
- "dist/compiler.js"
7+
- "src/**/*"
88

99
exclude_paths:
1010
- "dist/riot.compiler.js"

.eslintrc.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true,
5+
"mocha": true,
6+
"node": true
7+
},
8+
"extends": "eslint:recommended",
9+
"parserOptions": {
10+
"sourceType": "module"
11+
},
12+
"rules": {
13+
"eqeqeq": ["error", "smart"],
14+
"indent": ["error", 2],
15+
"no-bitwise": ["error", { "allow": ["|"] }],
16+
"linebreak-style": ["error", "unix"],
17+
"no-cond-assign": "off",
18+
"no-console": "off",
19+
"no-unexpected-multiline": "error",
20+
"quotes": ["error", "single", "avoid-escape"],
21+
"semi": ["error", "never"]
22+
},
23+
"globals": {
24+
"expect": true,
25+
"body": true,
26+
"chai": true,
27+
"sinon": true,
28+
"riot": true
29+
}
30+
}

.eslintrc.yml

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

0 commit comments

Comments
 (0)