Skip to content
This repository was archived by the owner on Mar 25, 2021. It is now read-only.

Commit bccbe4e

Browse files
committed
Merge branch 'master' into strict-boolean-expressions
2 parents c22f406 + dcc73b5 commit bccbe4e

File tree

614 files changed

+13785
-10099
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

614 files changed

+13785
-10099
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@ typings/.basedir.ts
2020

2121
docs/_data/rules.json
2222
docs/rules/*/index.html
23+
24+
/coverage/
25+
/.nyc_output

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.DS_Store
22
.github
33
.gitmodules
4+
.gitattributes
45
.eslintrc.json
56
.npmrc
67
.project
@@ -9,6 +10,8 @@
910
.tscache
1011
.tslintrc
1112
.vscode
13+
.nycrc
14+
.editorconfig
1215
appveyor.yml
1316
circle.yml
1417
tslint.json
@@ -19,3 +22,5 @@ yarn.lock
1922
/src/
2023
/test/
2124
tscommand*.txt
25+
/coverage/
26+
/.nyc_output

.nycrc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"include": [
3+
"build/**/*.js"
4+
],
5+
"extension": [
6+
".js"
7+
],
8+
"exclude": [
9+
"build/test"
10+
],
11+
"reporter": [
12+
"text-summary",
13+
"html"
14+
],
15+
"sourceMap": true,
16+
"all": true
17+
}

CHANGELOG.md

Lines changed: 209 additions & 14 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)