@tpluscode/eslint-config 0.1.1 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.changeset/README.md +8 -0
- package/.changeset/config.json +10 -0
- package/.github/workflows/build.yml +14 -0
- package/.github/workflows/release.yml +35 -0
- package/.husky/pre-commit +4 -0
- package/CHANGELOG.md +25 -11
- package/README.md +4 -1
- package/index.js +22 -2
- package/package.json +13 -22
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/eslint-config.iml +0 -12
- package/.idea/inspectionProfiles/Project_Default.xml +0 -9
- package/.idea/markdown-navigator-enh.xml +0 -29
- package/.idea/markdown-navigator.xml +0 -74
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/.idea/workspace.xml +0 -171
- package/.travis.yml +0 -10
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Changesets
|
|
2
|
+
|
|
3
|
+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
|
|
4
|
+
with multi-package repos, or single-package repos to help you version and publish your code. You can
|
|
5
|
+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
|
|
6
|
+
|
|
7
|
+
We have a quick list of common questions to get you started engaging with this project in
|
|
8
|
+
[our documentation](https://github.com/changesets/changesets/blob/master/docs/common-questions.md)
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
release:
|
|
10
|
+
name: Release
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout Repo
|
|
14
|
+
uses: actions/checkout@master
|
|
15
|
+
with:
|
|
16
|
+
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
|
|
17
|
+
fetch-depth: 0
|
|
18
|
+
|
|
19
|
+
- name: Setup Node.js
|
|
20
|
+
uses: actions/setup-node@v2.1.2
|
|
21
|
+
with:
|
|
22
|
+
node-version: 13
|
|
23
|
+
|
|
24
|
+
- name: Install Dependencies
|
|
25
|
+
run: yarn
|
|
26
|
+
|
|
27
|
+
- name: Create Release Pull Request or Publish to npm
|
|
28
|
+
id: changesets
|
|
29
|
+
uses: changesets/action@master
|
|
30
|
+
with:
|
|
31
|
+
# This expects you to have a script called release which does a build for your packages and calls changeset publish
|
|
32
|
+
publish: yarn release
|
|
33
|
+
env:
|
|
34
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
35
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,28 +1,44 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0497e3b: Disable `no-unused-expression` in test files
|
|
8
|
+
|
|
9
|
+
## 0.3.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- bae8ca8: Make missing imports error
|
|
14
|
+
- 1e5852d: Update dependencies
|
|
15
|
+
|
|
3
16
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
17
|
|
|
5
|
-
###
|
|
18
|
+
### 0.2.0
|
|
6
19
|
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
- enable `impor/order` rule
|
|
23
|
+
|
|
24
|
+
### [0.1.1](https://github.com/tpluscode/eslint-config/compare/v0.1.0...v0.1.1) (2020-09-22)
|
|
7
25
|
|
|
8
26
|
### Features
|
|
9
27
|
|
|
10
|
-
|
|
11
|
-
|
|
28
|
+
- disable default ctor rule in ts files ([8f4ec82](https://github.com/tpluscode/eslint-config/commit/8f4ec8299c0d6cdf6146f4144645c7055efd460f))
|
|
29
|
+
- tweak import/no-extraneous-dependencies in test files ([d37be96](https://github.com/tpluscode/eslint-config/commit/d37be961db6ab82f40092f73cac37beee1571c82))
|
|
12
30
|
|
|
13
31
|
## [0.1.0](https://github.com/tpluscode/eslint-config/compare/v0.0.4...v0.1.0) (2020-04-23)
|
|
14
32
|
|
|
15
|
-
|
|
16
33
|
### Features
|
|
17
34
|
|
|
18
|
-
|
|
35
|
+
- set up import plugin ([13873d7](https://github.com/tpluscode/eslint-config/commit/13873d7ad82b3fb7b9669f4486272e3648672538))
|
|
19
36
|
|
|
20
37
|
### [0.0.4](https://github.com/tpluscode/eslint-config/compare/v0.0.3...v0.0.4) (2019-12-08)
|
|
21
38
|
|
|
22
|
-
|
|
23
39
|
### Features
|
|
24
40
|
|
|
25
|
-
|
|
41
|
+
- disallow console ([edb3849](https://github.com/tpluscode/eslint-config/commit/edb384909b732fcbdb025ec6532b72156d550bf8))
|
|
26
42
|
|
|
27
43
|
### [0.0.3](https://github.com/tpluscode/eslint-config/compare/v0.0.2...v0.0.3) (2019-11-30)
|
|
28
44
|
|
|
@@ -30,12 +46,10 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
30
46
|
|
|
31
47
|
### 0.0.1 (2019-11-30)
|
|
32
48
|
|
|
33
|
-
|
|
34
49
|
### Features
|
|
35
50
|
|
|
36
|
-
|
|
37
|
-
|
|
51
|
+
- first version based on current projects ([38c3443](https://github.com/tpluscode/eslint-config/commit/38c344312641f3b681ab6dde8ba783166537606c))
|
|
38
52
|
|
|
39
53
|
### Bug Fixes
|
|
40
54
|
|
|
41
|
-
|
|
55
|
+
- change parser option to work with vue ([ae5fc4b](https://github.com/tpluscode/eslint-config/commit/ae5fc4be1a11301f4e60ea16ae7e835b207a87fb))
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @tpluscode/eslint-config
|
|
2
2
|
|
|
3
|
-
Slightly customized `standard` config with TypeScript rules enabled.
|
|
3
|
+
Slightly customized `standard` config with TypeScript rules enabled.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -9,7 +9,10 @@ npm i --save-dev \
|
|
|
9
9
|
@tpluscode/eslint-config \
|
|
10
10
|
@typescript-eslint/eslint-plugin \
|
|
11
11
|
@typescript-eslint/parser \
|
|
12
|
+
eslint-import-resolver-typescript \
|
|
13
|
+
eslint-config-standard \
|
|
12
14
|
eslint-plugin-import \
|
|
15
|
+
eslint-plugin-node \
|
|
13
16
|
standard
|
|
14
17
|
```
|
|
15
18
|
|
package/index.js
CHANGED
|
@@ -16,8 +16,9 @@ module.exports = {
|
|
|
16
16
|
rules: {
|
|
17
17
|
indent: 'off',
|
|
18
18
|
'no-console': 'error',
|
|
19
|
-
'import/no-unresolved': '
|
|
19
|
+
'import/no-unresolved': 'error',
|
|
20
20
|
'import/extensions': 'off',
|
|
21
|
+
'import/order': 'error',
|
|
21
22
|
'space-before-function-paren': [
|
|
22
23
|
'error',
|
|
23
24
|
{
|
|
@@ -53,7 +54,15 @@ module.exports = {
|
|
|
53
54
|
]
|
|
54
55
|
},
|
|
55
56
|
settings: {
|
|
56
|
-
'import/core-modules': ['rdf-js']
|
|
57
|
+
'import/core-modules': ['rdf-js'],
|
|
58
|
+
'import/parsers': {
|
|
59
|
+
'@typescript-eslint/parser': ['.ts', '.tsx']
|
|
60
|
+
},
|
|
61
|
+
'import/resolver': {
|
|
62
|
+
typescript: {
|
|
63
|
+
alwaysTryTypes: true
|
|
64
|
+
}
|
|
65
|
+
}
|
|
57
66
|
},
|
|
58
67
|
overrides: [
|
|
59
68
|
{
|
|
@@ -65,6 +74,17 @@ module.exports = {
|
|
|
65
74
|
'@typescript-eslint/no-var-requires': 'off'
|
|
66
75
|
}
|
|
67
76
|
},
|
|
77
|
+
{
|
|
78
|
+
files: [
|
|
79
|
+
'*.test.js',
|
|
80
|
+
'*.spec.js',
|
|
81
|
+
'*.test.ts',
|
|
82
|
+
'*.spec.ts'
|
|
83
|
+
],
|
|
84
|
+
rules: {
|
|
85
|
+
'no-unused-expressions': 'off'
|
|
86
|
+
}
|
|
87
|
+
},
|
|
68
88
|
{
|
|
69
89
|
files: '*.ts',
|
|
70
90
|
rules: {
|
package/package.json
CHANGED
|
@@ -1,26 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tpluscode/eslint-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
+
"prepare": "husky install",
|
|
7
8
|
"test": "eslint .",
|
|
8
|
-
"release": "
|
|
9
|
+
"release": "changeset publish"
|
|
9
10
|
},
|
|
10
11
|
"peerDependencies": {
|
|
11
12
|
"eslint": ">=6",
|
|
13
|
+
"eslint-import-resolver-typescript": ">=2",
|
|
12
14
|
"@typescript-eslint/eslint-plugin": ">=2",
|
|
13
15
|
"@typescript-eslint/parser": ">=2",
|
|
14
16
|
"standard": ">=11"
|
|
15
17
|
},
|
|
16
18
|
"devDependencies": {
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
19
|
+
"@changesets/cli": "^2.15.0",
|
|
20
|
+
"eslint": "^7.23.0",
|
|
21
|
+
"eslint-config-standard": "^16.0.2",
|
|
22
|
+
"eslint-plugin-import": "^2.22.1",
|
|
23
|
+
"eslint-plugin-node": "^11.1.0",
|
|
24
|
+
"standard": "^16.0.3",
|
|
25
|
+
"lint-staged": "^10.5.4",
|
|
26
|
+
"husky": "^6.0.0"
|
|
24
27
|
},
|
|
25
28
|
"repository": {
|
|
26
29
|
"type": "git",
|
|
@@ -38,21 +41,9 @@
|
|
|
38
41
|
"access": "public"
|
|
39
42
|
},
|
|
40
43
|
"homepage": "https://github.com/tpluscode/eslint-config#readme",
|
|
41
|
-
"husky": {
|
|
42
|
-
"hooks": {
|
|
43
|
-
"pre-commit": "lint-staged",
|
|
44
|
-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
44
|
"lint-staged": {
|
|
48
45
|
"*.js": [
|
|
49
|
-
"eslint --fix --quiet"
|
|
50
|
-
"git add"
|
|
51
|
-
]
|
|
52
|
-
},
|
|
53
|
-
"commitlint": {
|
|
54
|
-
"extends": [
|
|
55
|
-
"@commitlint/config-conventional"
|
|
46
|
+
"eslint --fix --quiet"
|
|
56
47
|
]
|
|
57
48
|
}
|
|
58
49
|
}
|
package/.idea/eslint-config.iml
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$">
|
|
5
|
-
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
|
6
|
-
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
|
7
|
-
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
|
8
|
-
</content>
|
|
9
|
-
<orderEntry type="inheritedJdk" />
|
|
10
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
11
|
-
</component>
|
|
12
|
-
</module>
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<component name="InspectionProjectProfileManager">
|
|
2
|
-
<profile version="1.0">
|
|
3
|
-
<option name="myName" value="Project Default" />
|
|
4
|
-
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
5
|
-
<inspection_tool class="UnterminatedStatementJS" enabled="false" level="WARNING" enabled_by_default="false">
|
|
6
|
-
<option name="ignoreSemicolonAtEndOfBlock" value="true" />
|
|
7
|
-
</inspection_tool>
|
|
8
|
-
</profile>
|
|
9
|
-
</component>
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="MarkdownEnhProjectSettings">
|
|
4
|
-
<AnnotatorSettings targetHasSpaces="true" linkCaseMismatch="true" wikiCaseMismatch="true" wikiLinkHasDashes="true" notUnderWikiHome="true" targetNotWikiPageExt="true" notUnderSourceWikiHome="true" targetNameHasAnchor="true" targetPathHasAnchor="true" wikiLinkHasSlash="true" wikiLinkHasSubdir="true" wikiLinkHasOnlyAnchor="true" linkTargetsWikiHasExt="true" linkTargetsWikiHasBadExt="true" notUnderSameRepo="true" targetNotUnderVcs="false" linkNeedsExt="true" linkHasBadExt="true" linkTargetNeedsExt="true" linkTargetHasBadExt="true" wikiLinkNotInWiki="true" imageTargetNotInRaw="true" repoRelativeAcrossVcsRoots="true" multipleWikiTargetsMatch="true" unresolvedLinkReference="true" linkIsIgnored="true" anchorIsIgnored="true" anchorIsUnresolved="true" anchorLineReferenceIsUnresolved="true" anchorLineReferenceFormat="true" anchorHasDuplicates="true" abbreviationDuplicates="true" abbreviationNotUsed="true" attributeIdDuplicateDefinition="true" attributeIdNotUsed="true" footnoteDuplicateDefinition="true" footnoteUnresolved="true" footnoteDuplicates="true" footnoteNotUsed="true" macroDuplicateDefinition="true" macroUnresolved="true" macroDuplicates="true" macroNotUsed="true" referenceDuplicateDefinition="true" referenceUnresolved="true" referenceDuplicates="true" referenceNotUsed="true" referenceUnresolvedNumericId="true" enumRefDuplicateDefinition="true" enumRefUnresolved="true" enumRefDuplicates="true" enumRefNotUsed="true" enumRefLinkUnresolved="true" enumRefLinkDuplicates="true" simTocUpdateNeeded="true" simTocTitleSpaceNeeded="true" />
|
|
5
|
-
<HtmlExportSettings updateOnSave="false" parentDir="" targetDir="" cssDir="css" scriptDir="js" plainHtml="false" imageDir="" copyLinkedImages="false" imagePathType="0" targetPathType="2" targetExt="" useTargetExt="false" noCssNoScripts="false" useElementStyleAttribute="false" linkToExportedHtml="true" exportOnSettingsChange="true" regenerateOnProjectOpen="false" linkFormatType="HTTP_ABSOLUTE" />
|
|
6
|
-
<LinkMapSettings>
|
|
7
|
-
<textMaps />
|
|
8
|
-
</LinkMapSettings>
|
|
9
|
-
</component>
|
|
10
|
-
<component name="MarkdownNavigatorHistory">
|
|
11
|
-
<PasteImageHistory checkeredTransparentBackground="false" filename="image" directory="" onPasteImageTargetRef="3" onPasteLinkText="0" onPasteImageElement="1" onPasteLinkElement="1" onPasteReferenceElement="2" cornerRadius="20" borderColor="0" transparentColor="16777215" borderWidth="1" trimTop="0" trimBottom="0" trimLeft="0" trimRight="0" transparent="false" roundCorners="false" showPreview="true" bordered="false" scaled="false" cropped="false" hideInapplicableOperations="false" preserveLinkFormat="false" scale="50" scalingInterpolation="1" transparentTolerance="0" saveAsDefaultOnOK="false" linkFormat="0" addHighlights="false" showHighlightCoordinates="true" showHighlights="false" mouseSelectionAddsHighlight="false" outerFilled="false" outerFillColor="0" outerFillTransparent="true" outerFillAlpha="30">
|
|
12
|
-
<highlightList />
|
|
13
|
-
<directories />
|
|
14
|
-
<filenames />
|
|
15
|
-
</PasteImageHistory>
|
|
16
|
-
<CopyImageHistory checkeredTransparentBackground="false" filename="image" directory="" onPasteImageTargetRef="3" onPasteLinkText="0" onPasteImageElement="1" onPasteLinkElement="1" onPasteReferenceElement="2" cornerRadius="20" borderColor="0" transparentColor="16777215" borderWidth="1" trimTop="0" trimBottom="0" trimLeft="0" trimRight="0" transparent="false" roundCorners="false" showPreview="true" bordered="false" scaled="false" cropped="false" hideInapplicableOperations="false" preserveLinkFormat="false" scale="50" scalingInterpolation="1" transparentTolerance="0" saveAsDefaultOnOK="false" linkFormat="0" addHighlights="false" showHighlightCoordinates="true" showHighlights="false" mouseSelectionAddsHighlight="false" outerFilled="false" outerFillColor="0" outerFillTransparent="true" outerFillAlpha="30">
|
|
17
|
-
<highlightList />
|
|
18
|
-
<directories />
|
|
19
|
-
<filenames />
|
|
20
|
-
</CopyImageHistory>
|
|
21
|
-
<PasteLinkHistory onPasteImageTargetRef="3" onPasteTargetRef="1" onPasteLinkText="0" onPasteImageElement="1" onPasteLinkElement="1" onPasteWikiElement="2" onPasteReferenceElement="2" hideInapplicableOperations="false" preserveLinkFormat="false" useHeadingForLinkText="false" linkFormat="0" saveAsDefaultOnOK="false" />
|
|
22
|
-
<TableToJsonHistory>
|
|
23
|
-
<entries />
|
|
24
|
-
</TableToJsonHistory>
|
|
25
|
-
<TableSortHistory>
|
|
26
|
-
<entries />
|
|
27
|
-
</TableSortHistory>
|
|
28
|
-
</component>
|
|
29
|
-
</project>
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="FlexmarkProjectSettings">
|
|
4
|
-
<FlexmarkHtmlSettings flexmarkSpecExampleRendering="0" flexmarkSpecExampleRenderHtml="false">
|
|
5
|
-
<flexmarkSectionLanguages>
|
|
6
|
-
<option name="1" value="Markdown" />
|
|
7
|
-
<option name="2" value="HTML" />
|
|
8
|
-
<option name="3" value="flexmark-ast:1" />
|
|
9
|
-
</flexmarkSectionLanguages>
|
|
10
|
-
</FlexmarkHtmlSettings>
|
|
11
|
-
</component>
|
|
12
|
-
<component name="MarkdownProjectSettings">
|
|
13
|
-
<PreviewSettings splitEditorLayout="SPLIT" splitEditorPreview="PREVIEW" useGrayscaleRendering="false" zoomFactor="1.0" maxImageWidth="0" synchronizePreviewPosition="true" highlightPreviewType="NONE" highlightFadeOut="5" highlightOnTyping="true" synchronizeSourcePosition="true" verticallyAlignSourceAndPreviewSyncPosition="true" showSearchHighlightsInPreview="false" showSelectionInPreview="true" lastLayoutSetsDefault="false">
|
|
14
|
-
<PanelProvider>
|
|
15
|
-
<provider providerId="com.vladsch.md.nav.editor.swing.html.panel" providerName="Default - Swing" />
|
|
16
|
-
</PanelProvider>
|
|
17
|
-
</PreviewSettings>
|
|
18
|
-
<ParserSettings gitHubSyntaxChange="false" correctedInvalidSettings="false" emojiShortcuts="0" emojiImages="0">
|
|
19
|
-
<PegdownExtensions>
|
|
20
|
-
<option name="ATXHEADERSPACE" value="true" />
|
|
21
|
-
<option name="AUTOLINKS" value="true" />
|
|
22
|
-
<option name="FENCED_CODE_BLOCKS" value="true" />
|
|
23
|
-
<option name="INTELLIJ_DUMMY_IDENTIFIER" value="true" />
|
|
24
|
-
<option name="RELAXEDHRULES" value="true" />
|
|
25
|
-
<option name="STRIKETHROUGH" value="true" />
|
|
26
|
-
<option name="TABLES" value="true" />
|
|
27
|
-
<option name="TASKLISTITEMS" value="true" />
|
|
28
|
-
<option name="WIKILINKS" value="true" />
|
|
29
|
-
</PegdownExtensions>
|
|
30
|
-
<ParserOptions>
|
|
31
|
-
<option name="COMMONMARK_LISTS" value="true" />
|
|
32
|
-
<option name="EMOJI_SHORTCUTS" value="true" />
|
|
33
|
-
<option name="GFM_TABLE_RENDERING" value="true" />
|
|
34
|
-
<option name="GITHUB_WIKI_LINKS" value="true" />
|
|
35
|
-
<option name="PRODUCTION_SPEC_PARSER" value="true" />
|
|
36
|
-
<option name="SIM_TOC_BLANK_LINE_SPACER" value="true" />
|
|
37
|
-
</ParserOptions>
|
|
38
|
-
</ParserSettings>
|
|
39
|
-
<HtmlSettings headerTopEnabled="false" headerBottomEnabled="false" bodyTopEnabled="false" bodyBottomEnabled="false" addPageHeader="true" addAnchorLinks="true" anchorLinksWrapText="false" imageUriSerials="false" addDocTypeHtml="true" noParaTags="false" defaultUrlTitle="false" migratedPlantUml="true" migratedAnchorLinks="true" plantUmlConversion="0">
|
|
40
|
-
<GeneratorProvider>
|
|
41
|
-
<provider providerId="com.vladsch.md.nav.editor.swing.html.generator" providerName="Default Swing HTML Generator" />
|
|
42
|
-
</GeneratorProvider>
|
|
43
|
-
<headerTop />
|
|
44
|
-
<headerBottom />
|
|
45
|
-
<bodyTop />
|
|
46
|
-
<bodyBottom />
|
|
47
|
-
<fencedCodeConversions>
|
|
48
|
-
<option name="c4plantuml" value="NONE" />
|
|
49
|
-
<option name="ditaa" value="NONE" />
|
|
50
|
-
<option name="erd" value="NONE" />
|
|
51
|
-
<option name="graphviz" value="NONE" />
|
|
52
|
-
<option name="latex" value="KATEX" />
|
|
53
|
-
<option name="math" value="KATEX" />
|
|
54
|
-
<option name="mermaid" value="NONE" />
|
|
55
|
-
<option name="nomnoml" value="NONE" />
|
|
56
|
-
<option name="plantuml" value="NONE" />
|
|
57
|
-
<option name="puml" value="NONE" />
|
|
58
|
-
<option name="svgbob" value="NONE" />
|
|
59
|
-
<option name="umlet" value="NONE" />
|
|
60
|
-
<option name="vega" value="NONE" />
|
|
61
|
-
<option name="vegalite" value="NONE" />
|
|
62
|
-
<option name="wavedrom" value="NONE" />
|
|
63
|
-
</fencedCodeConversions>
|
|
64
|
-
</HtmlSettings>
|
|
65
|
-
<CssSettings previewScheme="UI_SCHEME" cssUri="" isCssUriEnabled="false" isCssUriSerial="true" isCssTextEnabled="false" isDynamicPageWidth="true">
|
|
66
|
-
<StylesheetProvider>
|
|
67
|
-
<provider providerId="com.vladsch.md.nav.editor.swing.html.css" providerName="Default Swing Stylesheet" />
|
|
68
|
-
</StylesheetProvider>
|
|
69
|
-
<ScriptProviders />
|
|
70
|
-
<cssText />
|
|
71
|
-
<cssUriHistory />
|
|
72
|
-
</CssSettings>
|
|
73
|
-
</component>
|
|
74
|
-
</project>
|
package/.idea/misc.xml
DELETED
package/.idea/modules.xml
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ProjectModuleManager">
|
|
4
|
-
<modules>
|
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/eslint-config.iml" filepath="$PROJECT_DIR$/.idea/eslint-config.iml" />
|
|
6
|
-
</modules>
|
|
7
|
-
</component>
|
|
8
|
-
</project>
|
package/.idea/vcs.xml
DELETED
package/.idea/workspace.xml
DELETED
|
@@ -1,171 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ChangeListManager">
|
|
4
|
-
<list default="true" id="2f26af50-6826-43ff-ac11-de8796217aee" name="Default Changelist" comment="">
|
|
5
|
-
<change beforePath="$PROJECT_DIR$/index.js" beforeDir="false" afterPath="$PROJECT_DIR$/index.js" afterDir="false" />
|
|
6
|
-
</list>
|
|
7
|
-
<option name="SHOW_DIALOG" value="false" />
|
|
8
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
9
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
10
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
11
|
-
</component>
|
|
12
|
-
<component name="Git.Settings">
|
|
13
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
14
|
-
</component>
|
|
15
|
-
<component name="PackageJsonUpdateNotifier">
|
|
16
|
-
<dismissed value="$PROJECT_DIR$/package.json" />
|
|
17
|
-
</component>
|
|
18
|
-
<component name="ProjectId" id="1ULGMPCdn9RainbIYylb1SJ5F2U" />
|
|
19
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
|
20
|
-
<component name="ProjectViewState">
|
|
21
|
-
<option name="hideEmptyMiddlePackages" value="true" />
|
|
22
|
-
<option name="showLibraryContents" value="true" />
|
|
23
|
-
</component>
|
|
24
|
-
<component name="PropertiesComponent">
|
|
25
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
26
|
-
<property name="editor.config.ad.shown" value="true" />
|
|
27
|
-
<property name="ignore_missing_gitignore" value="true" />
|
|
28
|
-
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
|
29
|
-
<property name="node.js.detected.package.eslint" value="true" />
|
|
30
|
-
<property name="node.js.detected.package.standard" value="true" />
|
|
31
|
-
<property name="node.js.detected.package.tslint" value="true" />
|
|
32
|
-
<property name="node.js.path.for.package.eslint" value="project" />
|
|
33
|
-
<property name="node.js.path.for.package.standard" value="project" />
|
|
34
|
-
<property name="node.js.path.for.package.tslint" value="project" />
|
|
35
|
-
<property name="node.js.selected.package.eslint" value="(autodetect)" />
|
|
36
|
-
<property name="node.js.selected.package.standard" value="$PROJECT_DIR$/node_modules/standard" />
|
|
37
|
-
<property name="node.js.selected.package.tslint" value="(autodetect)" />
|
|
38
|
-
<property name="nodejs_interpreter_path.stuck_in_default_project" value="/usr/local/bin/node" />
|
|
39
|
-
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
|
|
40
|
-
<property name="nodejs_package_manager_path" value="npm" />
|
|
41
|
-
<property name="settings.editor.selected.configurable" value="settings.javascript.linters.eslint" />
|
|
42
|
-
<property name="standardjs.codestyle.accepted" value="true" />
|
|
43
|
-
<property name="vue.rearranger.settings.migration" value="true" />
|
|
44
|
-
</component>
|
|
45
|
-
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
|
46
|
-
<component name="SvnConfiguration">
|
|
47
|
-
<configuration />
|
|
48
|
-
</component>
|
|
49
|
-
<component name="TaskManager">
|
|
50
|
-
<task active="true" id="Default" summary="Default task">
|
|
51
|
-
<changelist id="2f26af50-6826-43ff-ac11-de8796217aee" name="Default Changelist" comment="" />
|
|
52
|
-
<created>1572603806517</created>
|
|
53
|
-
<option name="number" value="Default" />
|
|
54
|
-
<option name="presentableId" value="Default" />
|
|
55
|
-
<updated>1572603806517</updated>
|
|
56
|
-
<workItem from="1572603807944" duration="2113000" />
|
|
57
|
-
<workItem from="1572606426357" duration="1167000" />
|
|
58
|
-
<workItem from="1575128416574" duration="2345000" />
|
|
59
|
-
<workItem from="1575808540050" duration="114000" />
|
|
60
|
-
<workItem from="1575809027465" duration="26000" />
|
|
61
|
-
<workItem from="1587643216880" duration="25000" />
|
|
62
|
-
<workItem from="1600794299207" duration="765000" />
|
|
63
|
-
</task>
|
|
64
|
-
<task id="LOCAL-00001" summary="chore: set up the necessary dependencies">
|
|
65
|
-
<created>1572604288389</created>
|
|
66
|
-
<option name="number" value="00001" />
|
|
67
|
-
<option name="presentableId" value="LOCAL-00001" />
|
|
68
|
-
<option name="project" value="LOCAL" />
|
|
69
|
-
<updated>1572604288389</updated>
|
|
70
|
-
</task>
|
|
71
|
-
<task id="LOCAL-00002" summary="style: linting and editorconfig locally also">
|
|
72
|
-
<created>1572604984094</created>
|
|
73
|
-
<option name="number" value="00002" />
|
|
74
|
-
<option name="presentableId" value="LOCAL-00002" />
|
|
75
|
-
<option name="project" value="LOCAL" />
|
|
76
|
-
<updated>1572604984095</updated>
|
|
77
|
-
</task>
|
|
78
|
-
<task id="LOCAL-00003" summary="feat: first version based on current projects">
|
|
79
|
-
<created>1572605100124</created>
|
|
80
|
-
<option name="number" value="00003" />
|
|
81
|
-
<option name="presentableId" value="LOCAL-00003" />
|
|
82
|
-
<option name="project" value="LOCAL" />
|
|
83
|
-
<updated>1572605100124</updated>
|
|
84
|
-
</task>
|
|
85
|
-
<task id="LOCAL-00004" summary="feat: first version based on current projects">
|
|
86
|
-
<created>1572605853601</created>
|
|
87
|
-
<option name="number" value="00004" />
|
|
88
|
-
<option name="presentableId" value="LOCAL-00004" />
|
|
89
|
-
<option name="project" value="LOCAL" />
|
|
90
|
-
<updated>1572605853601</updated>
|
|
91
|
-
</task>
|
|
92
|
-
<task id="LOCAL-00005" summary="fix: change parser option to work with vue">
|
|
93
|
-
<created>1572610801847</created>
|
|
94
|
-
<option name="number" value="00005" />
|
|
95
|
-
<option name="presentableId" value="LOCAL-00005" />
|
|
96
|
-
<option name="project" value="LOCAL" />
|
|
97
|
-
<updated>1572610801847</updated>
|
|
98
|
-
</task>
|
|
99
|
-
<task id="LOCAL-00006" summary="chore: forked to tpluscode">
|
|
100
|
-
<created>1575128628114</created>
|
|
101
|
-
<option name="number" value="00006" />
|
|
102
|
-
<option name="presentableId" value="LOCAL-00006" />
|
|
103
|
-
<option name="project" value="LOCAL" />
|
|
104
|
-
<updated>1575128628114</updated>
|
|
105
|
-
</task>
|
|
106
|
-
<task id="LOCAL-00007" summary="chore: forked to tpluscode">
|
|
107
|
-
<created>1575128644975</created>
|
|
108
|
-
<option name="number" value="00007" />
|
|
109
|
-
<option name="presentableId" value="LOCAL-00007" />
|
|
110
|
-
<option name="project" value="LOCAL" />
|
|
111
|
-
<updated>1575128644975</updated>
|
|
112
|
-
</task>
|
|
113
|
-
<task id="LOCAL-00008" summary="ci: set up travis deployment">
|
|
114
|
-
<created>1575129948515</created>
|
|
115
|
-
<option name="number" value="00008" />
|
|
116
|
-
<option name="presentableId" value="LOCAL-00008" />
|
|
117
|
-
<option name="project" value="LOCAL" />
|
|
118
|
-
<updated>1575129948515</updated>
|
|
119
|
-
</task>
|
|
120
|
-
<task id="LOCAL-00009" summary="ci: add test command">
|
|
121
|
-
<created>1575130226235</created>
|
|
122
|
-
<option name="number" value="00009" />
|
|
123
|
-
<option name="presentableId" value="LOCAL-00009" />
|
|
124
|
-
<option name="project" value="LOCAL" />
|
|
125
|
-
<updated>1575130226235</updated>
|
|
126
|
-
</task>
|
|
127
|
-
<task id="LOCAL-00010" summary="ci: bump node">
|
|
128
|
-
<created>1575130325572</created>
|
|
129
|
-
<option name="number" value="00010" />
|
|
130
|
-
<option name="presentableId" value="LOCAL-00010" />
|
|
131
|
-
<option name="project" value="LOCAL" />
|
|
132
|
-
<updated>1575130325572</updated>
|
|
133
|
-
</task>
|
|
134
|
-
<task id="LOCAL-00011" summary="ci: change api key">
|
|
135
|
-
<created>1575130679104</created>
|
|
136
|
-
<option name="number" value="00011" />
|
|
137
|
-
<option name="presentableId" value="LOCAL-00011" />
|
|
138
|
-
<option name="project" value="LOCAL" />
|
|
139
|
-
<updated>1575130679104</updated>
|
|
140
|
-
</task>
|
|
141
|
-
<option name="localTasksCounter" value="12" />
|
|
142
|
-
<servers />
|
|
143
|
-
</component>
|
|
144
|
-
<component name="TypeScriptGeneratedFilesManager">
|
|
145
|
-
<option name="version" value="3" />
|
|
146
|
-
</component>
|
|
147
|
-
<component name="Vcs.Log.Tabs.Properties">
|
|
148
|
-
<option name="TAB_STATES">
|
|
149
|
-
<map>
|
|
150
|
-
<entry key="MAIN">
|
|
151
|
-
<value>
|
|
152
|
-
<State />
|
|
153
|
-
</value>
|
|
154
|
-
</entry>
|
|
155
|
-
</map>
|
|
156
|
-
</option>
|
|
157
|
-
<option name="oldMeFiltersMigrated" value="true" />
|
|
158
|
-
</component>
|
|
159
|
-
<component name="VcsManagerConfiguration">
|
|
160
|
-
<MESSAGE value="chore: set up the necessary dependencies" />
|
|
161
|
-
<MESSAGE value="style: linting and editorconfig locally also" />
|
|
162
|
-
<MESSAGE value="feat: first version based on current projects" />
|
|
163
|
-
<MESSAGE value="fix: change parser option to work with vue" />
|
|
164
|
-
<MESSAGE value="chore: forked to tpluscode" />
|
|
165
|
-
<MESSAGE value="ci: set up travis deployment" />
|
|
166
|
-
<MESSAGE value="ci: add test command" />
|
|
167
|
-
<MESSAGE value="ci: bump node" />
|
|
168
|
-
<MESSAGE value="ci: change api key" />
|
|
169
|
-
<option name="LAST_COMMIT_MESSAGE" value="ci: change api key" />
|
|
170
|
-
</component>
|
|
171
|
-
</project>
|
package/.travis.yml
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
language: node_js
|
|
2
|
-
node_js: 12
|
|
3
|
-
deploy:
|
|
4
|
-
provider: npm
|
|
5
|
-
email: npm@t-code.pl
|
|
6
|
-
api_key:
|
|
7
|
-
secure: n7vx5qHF71MXgRttJCQzZU85ekxnfTUmW1et3I38LN67xutmLGJJgsbjeKdwcqVyKe6tL3lyHAd9+cHqWgpUKJnnH07yoQt1dluDJ/cGNihdLWKcwM8VATimMAFcc7i8gWbp0nbukDmC3guJ0COIu4DFtSo8pJ0rt7vLs4Uzxd6aQt/SdFJyKGKocyYvyfimtZdvBnJVsneqHY/a5cCi1PM+qSAwUMCPjKDnrrmX3s11QOBdtFN4VqsgQCana82eQ4TbU33mOSnJqqMRcGijvzgXGISJwXIRLl1NebS2FLfVlGW/srP3wvIkotmOc+iCGkRIPcAaYyZ6XLta8qYxT5FGWTCvrWzWVZ1kRZ2p6t8EvacXhE/YwBx3eE5oB9wVa904ctOfz4SFDtQ0aYKfmqWXsqZLRCiiZJYRdBttog/5nlKBOVyP9yJcUJfp/ClsAcUS9NMv3iQ0shpYSbQDfB0U0FVpsdGts2iS6+orwoj/90OEROpC5AcN9SyOuznvu60pXeYX/j4QfPT1lQegXd1l7MdLGsKFeR447jD425GeRVzSdszn7XRP1AFlj15rMRl6BAIEDjn0iKoHloUfAJeg83b403pxYzDL/MFTjfpT/Jcwu65wEzXySXkgGh26calKTDYscaVgjie/M1ZItessS1sBdqmYqhK6ynaPNHk=
|
|
8
|
-
on:
|
|
9
|
-
tags: true
|
|
10
|
-
repo: tpluscode/eslint-config
|