aaf-mdqt 0.8.8 → 0.8.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e7f884d01697f865d55c804cdcdc6effe83d1f80023de88cd5e557d395a34aba
4
- data.tar.gz: a6bc73de15949019ccfae61edb365bd4633db5f77f1c7729126f35ff4fae982a
3
+ metadata.gz: ea9d489c8449e5db97040a7baf524f815a808808d4d8e96ce07a9ef1c34bd997
4
+ data.tar.gz: af2ff714e44d18f0eb85b45d2bcf5ffc2d152af23eaa115b21efa391c9504bdc
5
5
  SHA512:
6
- metadata.gz: f2dd7c004d066083182426d878b421611713c29d847ea483787770e59bfa64c84c6ede5e15d6d8942370f76c66c9c8416126c23bb66ed65d293252370296075d
7
- data.tar.gz: 7979f13e2252926ecd6a76e9921cce791ea825b13e555a91fdb3765770667efdb9b97af07794e08ff81caa8069d7ecdae2c56f0146936fd1e21a3efea0b2d285
6
+ metadata.gz: d280113111701cfe464841ae5446b2115138490d5a190f83af931e884f16102dbae7117f694e3dd4e5838dee02f8c13a603504364ad8754a0b66fc6054c367d0
7
+ data.tar.gz: ca0bc9b6267f3be1066227ab1ad22cdf02c144c40aedfecc7baf616244bcebed1db964e1247c880f7b823efe0daeeba1a361e3d1f4354ee20df6b63af0f166fa
data/.cachedFiles ADDED
@@ -0,0 +1,19 @@
1
+ workflows/distributions/.cachedFiles
2
+ workflows/distributions/.dockerignore
3
+ workflows/distributions/.dockleignore
4
+ workflows/distributions/.editorconfig
5
+ workflows/distributions/.github/workflows/deploy.yml
6
+ workflows/distributions/.github/workflows/pr-housekeeping.yml
7
+ workflows/distributions/.github/workflows/self-approve-tidying.yml
8
+ workflows/distributions/.github/workflows/sync-development.yml
9
+ workflows/distributions/.gitignore
10
+ workflows/distributions/.hadolint.yaml
11
+ workflows/distributions/.nvmrc
12
+ workflows/distributions/.prettierignore
13
+ workflows/distributions/.prettierrc
14
+ workflows/distributions/.streerc
15
+ workflows/distributions/.vscode/extensions.json
16
+ workflows/distributions/eslint.config.js
17
+ workflows/distributions/package.json
18
+ workflows/distributions/trivy.yaml
19
+ workflows/distributions/yarn.lock
data/.dockerignore ADDED
@@ -0,0 +1,15 @@
1
+ /.git
2
+ /.github
3
+ /.idea
4
+ /.vscode
5
+ /Dockerfile
6
+ /compose.yml
7
+ /coverage
8
+ /docs
9
+ /log
10
+ /public/assets
11
+ /tmp
12
+ ./coverage
13
+ .env*
14
+ node_modules
15
+ #EOF_DISTRIBUTION
data/.dockleignore ADDED
File without changes
data/.editorconfig ADDED
@@ -0,0 +1,9 @@
1
+ # top-most EditorConfig file
2
+ root = true
3
+
4
+ # Unix-style newlines with a newline ending every file
5
+ [*]
6
+ end_of_line = lf
7
+ insert_final_newline = true
8
+ trim_trailing_whitespace = true
9
+ #EOF_DISTRIBUTION
@@ -0,0 +1,14 @@
1
+ name: PR Housekeeping
2
+ on:
3
+ pull_request:
4
+ types: [opened, reopened]
5
+ jobs:
6
+ pr_housekeeping:
7
+ name: 'PR Housekeeping'
8
+ permissions:
9
+ contents: write
10
+ issues: write
11
+ pull-requests: write
12
+ secrets:
13
+ REPO_SCOPED_TOKEN: ${{secrets.ALL_REPO_SCOPED_TOKEN_2}}
14
+ uses: ausaccessfed/workflows/.github/workflows/pr-housekeeping.yml@main
@@ -28,12 +28,12 @@ jobs:
28
28
  ruby-version: ['3.0']
29
29
 
30
30
  steps:
31
- - uses: actions/checkout@v3
31
+ - uses: actions/checkout@v4
32
32
  - name: Set up Ruby
33
33
  # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
34
34
  # change this to (see https://github.com/ruby/setup-ruby#versioning):
35
35
  # uses: ruby/setup-ruby@v1
36
- uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
36
+ uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc # v1.202.0
37
37
  with:
38
38
  ruby-version: ${{ matrix.ruby-version }}
39
39
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
@@ -0,0 +1,19 @@
1
+ name: Self-approve tidying
2
+ on:
3
+ issue_comment:
4
+ types: [created]
5
+ jobs:
6
+ all:
7
+ permissions:
8
+ id-token: write
9
+ contents: read
10
+ statuses: write
11
+ issues: read
12
+ pull-requests: write
13
+ secrets:
14
+ REPO_SCOPED_TOKEN: ${{secrets.ALL_REPO_SCOPED_TOKEN_2}}
15
+ uses: ausaccessfed/workflows/.github/workflows/self-approve-tidying.yml@main
16
+ with:
17
+ event_name: ${{ github.event_name }}
18
+ event_comment_id: ${{ github.event.comment.id }}
19
+ event_comment_body: ${{ github.event.comment.body }}
data/.gitignore CHANGED
@@ -1,3 +1,17 @@
1
+ public/*
2
+ coverage
3
+ tmp
4
+ log
5
+ vendor
6
+ .DS_Store
7
+ dump.rdb
8
+ .idea
9
+ .env
10
+ !.*env*.dist
11
+ .vscode/*
12
+ !**/*vscode/extensions.json
13
+ node_modules
14
+ #EOF_DISTRIBUTION
1
15
  /.bundle/
2
16
  /.yardoc
3
17
  /Gemfile.lock
data/.hadolint.yaml ADDED
@@ -0,0 +1,2 @@
1
+ ignored: []
2
+ override: {}
data/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ 16
data/.prettierignore ADDED
@@ -0,0 +1,2 @@
1
+ node_modules
2
+ #EOF_DISTRIBUTION
data/.prettierrc ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "trailingComma": "none",
3
+ "semi": false,
4
+ "singleQuote": true,
5
+ "printWidth": 120
6
+ }
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.3.5
1
+ 3.3.6
data/.streerc ADDED
@@ -0,0 +1,6 @@
1
+ --print-width=120
2
+ --plugins=plugin/single_quotes
3
+ --ignore-files='node_modules/*'
4
+ --ignore-files='db/*schema.rb'
5
+ --ignore-files='coverage/*'
6
+ #EOF_DISTRIBUTION
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 3.2.0
1
+ ruby 3.3.6
@@ -0,0 +1,94 @@
1
+ {
2
+ "recommendations": [
3
+ //html
4
+ "formulahendry.auto-close-tag",
5
+ "formulahendry.auto-complete-tag",
6
+ "formulahendry.auto-rename-tag",
7
+ "ecmel.vscode-html-css",
8
+ "redhat.vscode-xml",
9
+ "redhat.vscode-yaml",
10
+
11
+ // shell
12
+ "foxundermoon.shell-format",
13
+
14
+ // css
15
+ "mrmlnc.vscode-scss",
16
+ "stylelint.vscode-stylelint",
17
+
18
+ // js
19
+ "steoates.autoimport",
20
+ "mgmcdermott.vscode-language-babel",
21
+ "dbaeumer.vscode-eslint",
22
+ "Orta.vscode-jest",
23
+ "leizongmin.node-module-intellisense",
24
+ "christian-kohler.npm-intellisense",
25
+ "esbenp.prettier-vscode",
26
+
27
+ // linting
28
+ "dbaeumer.vscode-eslint",
29
+ "rvest.vs-code-prettier-eslint",
30
+
31
+ //jinja
32
+ "samuelcolvin.jinjahtml",
33
+
34
+ // spell checker
35
+ "streetsidesoftware.code-spell-checker",
36
+
37
+ // coverage
38
+ "ryanluker.vscode-coverage-gutters",
39
+
40
+ //env
41
+ "mikestead.dotenv",
42
+
43
+ // editorconfig
44
+ "EditorConfig.EditorConfig",
45
+
46
+ // ruby
47
+ "aliariff.vscode-erb-beautify",
48
+ "rubocop.vscode-rubocop",
49
+ "Shopify.ruby-lsp",
50
+ "connorshea.vscode-ruby-test-adapter",
51
+ "sianglim.slim",
52
+ "aliariff.slim-lint",
53
+ "KoichiSasada.vscode-rdbg",
54
+
55
+ // random
56
+ "ue.alphabetical-sorter",
57
+ "kisstkondoros.vscode-gutter-preview",
58
+ "christian-kohler.path-intellisense",
59
+ "alefragnani.project-manager",
60
+ "cssho.vscode-svgviewer",
61
+ "TabNine.tabnine-vscode",
62
+ "wayou.vscode-todo-highlight",
63
+ "aaron-bond.better-comments",
64
+ "vscode-icons-team.vscode-icons",
65
+ "tomoki1207.pdf",
66
+
67
+ //test
68
+ "ms-vscode.test-adapter-converter",
69
+ "hbenl.vscode-test-explorer",
70
+
71
+ //github
72
+ "github.vscode-github-actions",
73
+
74
+ // git
75
+ "codezombiech.gitignore",
76
+ "qezhu.gitlink",
77
+ "eamodio.gitlens",
78
+
79
+ // terraform
80
+ "hashicorp.terraform",
81
+ "4ops.terraform",
82
+
83
+ //helm
84
+ "Tim-Koehler.helm-intellisense",
85
+
86
+ // live share
87
+ "ms-vsliveshare.vsliveshare",
88
+
89
+ // markdown
90
+ "yzhang.markdown-all-in-one",
91
+ "bierner.markdown-mermaid",
92
+ "DavidAnson.vscode-markdownlint"
93
+ ]
94
+ }
data/aaf-mdqt.gemspec CHANGED
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
28
28
  spec.add_dependency 'faraday-http-cache', "~>2"
29
29
  spec.add_dependency 'faraday-follow_redirects', "~>0.3"
30
30
  spec.add_dependency 'httpx', "~>1"
31
- spec.add_dependency 'activesupport', "~>7"
31
+ spec.add_dependency 'activesupport', ">= 7"
32
32
  spec.add_dependency 'dalli', "~>3"
33
33
  spec.add_dependency 'pastel', "~>0.8"
34
34
  spec.add_dependency 'terminal-table', "~>3"
data/eslint.config.js ADDED
@@ -0,0 +1,85 @@
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/mdqt/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module MDQT
2
- VERSION = "0.8.8"
2
+ VERSION = "0.8.9"
3
3
  end
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
@@ -0,0 +1,4 @@
1
+ scan:
2
+ skip-dirs: []
3
+ skip-files:
4
+ - .env