Skip to content

Commit aa23d65

Browse files
chore(defaults): update (#82)
1 parent afddc10 commit aa23d65

File tree

6 files changed

+1414
-28
lines changed

6 files changed

+1414
-28
lines changed

.editorconfig

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ insert_final_newline = true
99
trim_trailing_whitespace = true
1010

1111
[*.md]
12-
insert_final_newline = true
13-
trim_trailing_whitespace = false
12+
trim_trailing_whitespace = false

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ Thumbs.db
2929

3030
#build
3131
dist
32+
/dist

azure-pipelines.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
node -v
2424
npm -v
2525
displayName: 'Print versions'
26-
- task: CacheBeta@0
26+
- task: CacheBeta@1
2727
inputs:
2828
key: npm | $(Agent.OS) | package-lock.json
2929
path: $(npm_config_cache)
@@ -72,7 +72,7 @@ jobs:
7272
node -v
7373
npm -v
7474
displayName: 'Print versions'
75-
- task: CacheBeta@0
75+
- task: CacheBeta@1
7676
inputs:
7777
key: npm | $(Agent.OS) | package-lock.json
7878
path: $(npm_config_cache)
@@ -119,7 +119,7 @@ jobs:
119119
node -v
120120
npm -v
121121
displayName: 'Print versions'
122-
- task: CacheBeta@0
122+
- task: CacheBeta@1
123123
inputs:
124124
key: npm | $(Agent.OS) | package-lock.json
125125
path: $(npm_config_cache)
@@ -169,7 +169,7 @@ jobs:
169169
node -v
170170
npm -v
171171
displayName: 'Print versions'
172-
- task: CacheBeta@0
172+
- task: CacheBeta@1
173173
inputs:
174174
key: npm | $(Agent.OS) | package-lock.json
175175
path: $(npm_config_cache)

lint-staged.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module.exports = {
22
'*.js': ['prettier --write', 'eslint --fix', 'git add'],
3-
'*.{json,md,yml,css}': ['prettier --write', 'git add'],
3+
'*.{json,md,yml,css,ts}': ['prettier --write', 'git add'],
44
};

0 commit comments

Comments
 (0)