Skip to content

Commit 3173275

Browse files
committed
chore: merge new codebase
2 parents e7e7820 + 29f11c0 commit 3173275

File tree

353 files changed

+28182
-34902
lines changed

Some content is hidden

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

353 files changed

+28182
-34902
lines changed

.bowerrc

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

.browserslistrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
defaults
2+
not ie 11
3+
not ie_mob 11

.clean-publish

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"withoutPublish": true,
3+
"tempDir": "package"
4+
}

.commitlintrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": ["@commitlint/config-conventional"],
3+
"rules": {
4+
"body-max-line-length": [0]
5+
}
6+
}

.czrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"path": "@commitlint/cz-commitlint"
3+
}

.doclets.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.json

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
3+
"parser": "@babel/eslint-parser",
4+
"parserOptions": {
5+
"ecmaVersion": "latest",
6+
"requireConfigFile": false
7+
},
8+
"env": {
9+
"es6": true,
10+
"browser": true,
11+
"node": true
12+
},
13+
"rules": {
14+
"no-console": 2,
15+
"curly": 2,
16+
"dot-notation": 1,
17+
"eqeqeq": 2,
18+
"no-alert": 2,
19+
"no-caller": 2,
20+
"no-eval": 2,
21+
"no-extra-bind": 2,
22+
"no-implied-eval": 2,
23+
"no-multi-spaces": 2,
24+
"no-with": 2,
25+
"no-shadow": 2,
26+
"no-shadow-restricted-names": 2,
27+
"brace-style": ["error", "1tbs"],
28+
"camelcase": 2,
29+
"comma-style": ["error", "last"],
30+
"eol-last": 2,
31+
"key-spacing": 2,
32+
"new-cap": 1,
33+
"no-array-constructor": 2,
34+
"no-mixed-spaces-and-tabs": 2,
35+
"no-multiple-empty-lines": 2,
36+
"semi-spacing": 2,
37+
"no-spaced-func": 2,
38+
"no-trailing-spaces": 2,
39+
"space-before-blocks": 2,
40+
"spaced-comment": 1,
41+
"no-var": 2
42+
},
43+
"overrides": [
44+
{
45+
"files": ["**/*.ts"],
46+
"parser": "@typescript-eslint/parser",
47+
"plugins": ["@typescript-eslint"],
48+
"extends": ["plugin:@typescript-eslint/recommended"]
49+
},
50+
{
51+
"files": ["test/**/*.{js,ts}", "*.spec.{js,ts}", "*.stories.{js,ts}"],
52+
"plugins": [
53+
"jest",
54+
"testing-library",
55+
"jest-dom"
56+
],
57+
"extends": ["plugin:jest-dom/recommended"],
58+
"env": {
59+
"jest/globals": true
60+
},
61+
"rules": {
62+
"no-console": 0,
63+
"no-shadow": 0,
64+
"@typescript-eslint/no-explicit-any": 0
65+
}
66+
}
67+
]
68+
}

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* text=auto
1+
* text=auto
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: "🐛 Bug Report"
2+
description: "If something isn't working as expected."
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Thanks for taking the time to file a bug report! Please fill out this form as completely as possible.
9+
10+
- type: checkboxes
11+
id: input1
12+
attributes:
13+
label: Would you like to work on a fix?
14+
options:
15+
- label: Check this if you would like to implement a PR, we are more than happy to help you go through the process.
16+
17+
- type: textarea
18+
attributes:
19+
label: Current and expected behavior
20+
description: A clear and concise description of what the library is doing and what you would expect.
21+
validations:
22+
required: true
23+
24+
- type: input
25+
attributes:
26+
label: Reproduction
27+
description: |
28+
Please provide issue reproduction.
29+
You can give a link to a repository with the reproduction or make a [sandbox](https://codesandbox.io/) and reproduce the issue there.
30+
validations:
31+
required: true
32+
33+
- type: input
34+
attributes:
35+
label: Chartist version
36+
description: Which version of Chartist are you using?
37+
placeholder: v0.0.0
38+
validations:
39+
required: true
40+
41+
- type: textarea
42+
attributes:
43+
label: Possible solution
44+
description: If you have suggestions on a fix for the bug.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 🤔 Have a Question?
4+
url: https://stackoverflow.com/questions/tagged/chartist.js
5+
about: Feel free to ask questions on Stack Overflow.

0 commit comments

Comments
 (0)