Skip to content

Commit a145e06

Browse files
Merge branch 'release/v1.1.9'
2 parents 70a9c7e + ecac347 commit a145e06

File tree

12 files changed

+497
-351
lines changed

12 files changed

+497
-351
lines changed

.codeclimate.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@
22
"version": "2",
33
"exclude_patterns": [
44
"**/*.spec.ts"
5-
],
6-
"plugins": {
7-
}
5+
]
86
}

.eslintignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
/.eslintrc.cjs
2-
/dist/
2+
/**/*.config.js
3+
/**/*.css
4+
/**/*.vue

.eslintrc.cjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ module.exports = {
55
browser: true,
66
},
77
extends: ["@andreashuber69"],
8-
ignorePatterns: ["/**/*.config.js"],
98
};

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
/coverage/
22
/dist/
33
/node_modules/
4-
/src/test/vue/dist/
5-
/src/test/webpack/dist/

.markdownlintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/coverage/
2+
/dist/
3+
/node_modules/

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<a href="https://www.npmjs.com/package/async-css-plugin">
77
<img src="https://img.shields.io/npm/v/async-css-plugin" alt="NPM Version">
88
</a>
9-
<a href="https://github.com/andreashuber69/async-css-plugin/releases/latest">
9+
<a href="https://github.com/andreashuber69/async-css-plugin/releases">
1010
<img src="https://img.shields.io/github/release-date/andreashuber69/async-css-plugin.svg" alt="Release Date">
1111
</a>
1212
<a href="https://travis-ci.com/github/andreashuber69/async-css-plugin">
@@ -16,10 +16,10 @@
1616
<img src="https://img.shields.io/github/issues-raw/andreashuber69/async-css-plugin.svg" alt="Issues">
1717
</a>
1818
<a href="https://codeclimate.com/github/andreashuber69/async-css-plugin/maintainability">
19-
<img src="https://api.codeclimate.com/v1/badges/b071b5fbd1aaf7aafbd6/maintainability" alt="Code Climate Maintainability">
19+
<img src="https://api.codeclimate.com/v1/badges/b071b5fbd1aaf7aafbd6/maintainability" alt="Maintainability">
2020
</a>
2121
<a href="https://coveralls.io/github/andreashuber69/async-css-plugin?branch=develop">
22-
<img src="https://coveralls.io/repos/github/andreashuber69/async-css-plugin/badge.svg?branch=develop" alt="Coveralls">
22+
<img src="https://coveralls.io/repos/github/andreashuber69/async-css-plugin/badge.svg?branch=develop" alt="Coverage">
2323
</a>
2424
<a href="https://github.com/andreashuber69/async-css-plugin/blob/develop/LICENSE">
2525
<img src="https://img.shields.io/github/license/andreashuber69/async-css-plugin.svg" alt="License">

cspell.json

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,17 @@
11
{
22
"version": "0.2",
3-
"language": "en",
43
"words": [
54
"Andreas",
6-
"codebeat",
75
"unstyled"
86
],
9-
"flagWords": [],
107
"dictionaries": [
11-
"css",
8+
"bash",
129
"typescript"
1310
],
1411
"ignorePaths": [
15-
"**/*.svg",
16-
"coverage/**",
17-
"dist/**",
18-
"node_modules/**",
19-
"package.json",
20-
"package-lock.json",
21-
"tsconfig.json"
12+
"/cc-test-reporter",
13+
"/coverage/**",
14+
"/dist/**",
15+
"/package.json"
2216
]
2317
}

0 commit comments

Comments
 (0)