aaf-mdqt 0.8.7 → 0.8.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.cachedFiles +19 -0
- data/.dockerignore +15 -0
- data/.dockleignore +0 -0
- data/.editorconfig +9 -0
- data/.github/workflows/pr-housekeeping.yml +14 -0
- data/.github/workflows/ruby.yml +2 -2
- data/.github/workflows/self-approve-tidying.yml +19 -0
- data/.gitignore +14 -0
- data/.hadolint.yaml +2 -0
- data/.nvmrc +1 -0
- data/.prettierignore +2 -0
- data/.prettierrc +6 -0
- data/.ruby-version +1 -1
- data/.streerc +6 -0
- data/.tool-versions +1 -1
- data/.vscode/extensions.json +94 -0
- data/README.md +54 -55
- data/aaf-mdqt.gemspec +9 -9
- data/eslint.config.js +85 -0
- data/lib/mdqt/version.rb +1 -1
- data/package.json +18 -0
- data/trivy.yaml +4 -0
- data/yarn.lock +1900 -0
- metadata +37 -22
- data/.github/workflows/codeql-analysis.yml +0 -70
data/package.json
ADDED
@@ -0,0 +1,18 @@
|
|
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
ADDED