aaf-mdqt 0.8.9 → 0.8.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/mdqt/version.rb +1 -1
- metadata +1 -40
- data/.cachedFiles +0 -19
- data/.dockerignore +0 -15
- data/.dockleignore +0 -0
- data/.editorconfig +0 -9
- data/.github/workflows/pr-housekeeping.yml +0 -14
- data/.github/workflows/ruby.yml +0 -41
- data/.github/workflows/self-approve-tidying.yml +0 -19
- data/.gitignore +0 -39
- data/.hadolint.yaml +0 -2
- data/.nvmrc +0 -1
- data/.prettierignore +0 -2
- data/.prettierrc +0 -6
- data/.rspec +0 -2
- data/.rubocop.yml +0 -1
- data/.rubocop_todo.yml +0 -296
- data/.ruby-version +0 -1
- data/.streerc +0 -6
- data/.tool-versions +0 -1
- data/.travis.yml +0 -7
- data/.vscode/extensions.json +0 -94
- data/CHANGELOG.md +0 -168
- data/CODE_OF_CONDUCT.md +0 -74
- data/Gemfile +0 -9
- data/LICENSE.txt +0 -21
- data/Makefile +0 -4
- data/README.md +0 -267
- data/Rakefile +0 -5
- data/aaf-mdqt.gemspec +0 -46
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/cucumber.yml +0 -2
- data/eslint.config.js +0 -85
- data/lib/tasks/cucumber.rake +0 -8
- data/lib/tasks/spec.rake +0 -5
- data/lib/tasks/tests.rake +0 -6
- data/lib/tasks/yard.rake +0 -6
- data/package.json +0 -18
- data/trivy.yaml +0 -4
- data/yarn.lock +0 -1900
data/eslint.config.js
DELETED
@@ -1,85 +0,0 @@
|
|
1
|
-
/* eslint-disable no-undef */
|
2
|
-
const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended')
|
3
|
-
const eslintPluginYml = require('eslint-plugin-yml')
|
4
|
-
const eslint = require('@eslint/js')
|
5
|
-
const globals = require('globals')
|
6
|
-
|
7
|
-
const common = [
|
8
|
-
eslintPluginPrettierRecommended,
|
9
|
-
eslint.configs.recommended,
|
10
|
-
...eslintPluginYml.configs['flat/recommended'],
|
11
|
-
{
|
12
|
-
languageOptions: {
|
13
|
-
parserOptions: {
|
14
|
-
sourceType: 'module'
|
15
|
-
},
|
16
|
-
globals: {
|
17
|
-
...globals.browser,
|
18
|
-
...globals.node
|
19
|
-
}
|
20
|
-
},
|
21
|
-
rules: {
|
22
|
-
'class-methods-use-this': 'warn',
|
23
|
-
'no-param-reassign': [
|
24
|
-
'error',
|
25
|
-
{
|
26
|
-
props: false
|
27
|
-
}
|
28
|
-
],
|
29
|
-
'no-tabs': 'error',
|
30
|
-
'no-plusplus': 'off',
|
31
|
-
'no-underscore-dangle': 'off',
|
32
|
-
'no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
|
33
|
-
'import/extensions': 'off',
|
34
|
-
'import/first': 'off',
|
35
|
-
'import/no-unresolved': 'off',
|
36
|
-
'prettier/prettier': 'error',
|
37
|
-
'yml/plain-scalar': 'off',
|
38
|
-
'yml/quotes': [
|
39
|
-
'error',
|
40
|
-
{
|
41
|
-
prefer: 'single'
|
42
|
-
}
|
43
|
-
],
|
44
|
-
'yml/indent': 'off',
|
45
|
-
'yml/sort-keys': 'off',
|
46
|
-
'yml/no-empty-mapping-value': 'off',
|
47
|
-
'yml/no-multiple-empty-lines': [
|
48
|
-
'error',
|
49
|
-
{
|
50
|
-
max: 1
|
51
|
-
}
|
52
|
-
],
|
53
|
-
'yml/no-empty-document': 'off'
|
54
|
-
},
|
55
|
-
settings: {}
|
56
|
-
},
|
57
|
-
{
|
58
|
-
ignores: [
|
59
|
-
'.DS_Store',
|
60
|
-
'node_modules/',
|
61
|
-
'tmp/',
|
62
|
-
'coverage/',
|
63
|
-
'.vscode/',
|
64
|
-
'yarn.lock',
|
65
|
-
'Gemfile.lock',
|
66
|
-
'.env*',
|
67
|
-
'!.env*.dist',
|
68
|
-
'coverage/',
|
69
|
-
'public/assets/',
|
70
|
-
'**/.terraform/',
|
71
|
-
'tmp/*',
|
72
|
-
'.idea/*',
|
73
|
-
'dump.rdb',
|
74
|
-
'*.iml',
|
75
|
-
'**/kustomization.yaml',
|
76
|
-
'**/templates/',
|
77
|
-
'**/values.yaml',
|
78
|
-
'**/templates/',
|
79
|
-
'.github/',
|
80
|
-
'.torba/'
|
81
|
-
]
|
82
|
-
}
|
83
|
-
]
|
84
|
-
|
85
|
-
//EOF_DISTRIBUTION
|
data/lib/tasks/cucumber.rake
DELETED
data/lib/tasks/spec.rake
DELETED
data/lib/tasks/tests.rake
DELETED
data/lib/tasks/yard.rake
DELETED
data/package.json
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "app-name",
|
3
|
-
"private": true,
|
4
|
-
"dependencies": {},
|
5
|
-
"version": "0.1.0",
|
6
|
-
"devDependencies": {
|
7
|
-
"eslint": "9.17.0",
|
8
|
-
"eslint-config-prettier": "9.1.0",
|
9
|
-
"eslint-plugin-babel": "5.3.1",
|
10
|
-
"eslint-plugin-import": "2.31.0",
|
11
|
-
"eslint-plugin-prettier": "5.2.1",
|
12
|
-
"eslint-plugin-yml": "1.16.0",
|
13
|
-
"prettier": "3.4.2"
|
14
|
-
},
|
15
|
-
"scripts": {
|
16
|
-
"lint": "eslint . --ignore-path .eslintignore --quiet"
|
17
|
-
}
|
18
|
-
}
|
data/trivy.yaml
DELETED