-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: separate dialtone documentation site and library (#6)
* dialtone cleanup * move code-workspace file to project root * separate dialtone docs from library * stop outputting fonts to docs
- Loading branch information
1 parent
1d29ace
commit c937293
Showing
390 changed files
with
439 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# dependencies | ||
node_modules | ||
|
||
# vuepress | ||
!docs/.vuepress | ||
docs/.vuepress/.cache | ||
docs/.vuepress/.temp | ||
|
||
# builds | ||
docs/.vuepress/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
module.exports = { | ||
extends: [ | ||
'standard', | ||
'semistandard', | ||
'plugin:vue/base', | ||
'plugin:vue/vue3-recommended', | ||
'plugin:vuejs-accessibility/recommended', | ||
'plugin:jest/recommended', | ||
], | ||
env: { | ||
browser: true, | ||
node: true, | ||
amd: true, | ||
}, | ||
globals: { | ||
__VUEPRESS_SSR__: 'readonly', | ||
}, | ||
rules: { | ||
camelcase: ['error', { | ||
properties: 'never', // Ignore snake_case in JSON properties, which are often params. | ||
allow: ['^opt_'], // Allow opt_varname arguments. | ||
}], | ||
'comma-dangle': ['error', 'always-multiline'], | ||
'max-len': ['error', { | ||
code: 120, | ||
tabWidth: 2, | ||
}], | ||
'prefer-promise-reject-errors': ['error', { | ||
allowEmptyReject: true, | ||
}], | ||
'vue/comma-dangle': ['error', 'always-multiline'], | ||
'vue/component-name-in-template-casing': ['error', 'kebab-case', { | ||
registeredComponentsOnly: true, | ||
}], | ||
|
||
'vuejs-accessibility/label-has-for': [ | ||
'error', | ||
{ | ||
required: { | ||
some: ['nesting', 'id'], | ||
}, | ||
allowChildren: true, | ||
}, | ||
], | ||
'vue/new-line-between-multi-line-property': ['warn'], | ||
'vue/html-comment-content-spacing': ['warn'], | ||
'vue/no-potential-component-option-typo': ['warn'], | ||
'vue/multi-word-component-names': ['off'], | ||
'vue/no-reserved-component-names': ['error', { | ||
disallowVueBuiltInComponents: true, | ||
disallowVue3BuiltInComponents: true, | ||
}], | ||
'vue/no-v-model-argument': ['warn'], | ||
'vue/padding-line-between-blocks': ['warn'], | ||
'vue/require-direct-export': ['warn'], | ||
'vue/require-name-property': ['error'], | ||
'vue/valid-next-tick': ['error'], | ||
'vue/block-tag-newline': ['error'], | ||
'vue/no-duplicate-attr-inheritance': ['error'], | ||
'vue/no-undef-components': ['error', { | ||
ignorePatterns: ['icon-', 'router-link', 'toc', 'dtc-', 'dt-'], | ||
}], | ||
'vue/v-on-event-hyphenation': ['error'], | ||
'vue/no-template-target-blank': ['error'], | ||
'vue/no-static-inline-styles': ['off'], | ||
'vuejs-accessibility/iframe-has-title': 'warn', | ||
'vuejs-accessibility/aria-props': 'warn', | ||
|
||
'max-lines': ['warn', { max: 300, skipBlankLines: true, skipComments: true }], | ||
quotes: ['error', 'single', { allowTemplateLiterals: true }], | ||
complexity: ['warn', 5], | ||
|
||
// Vue core extensions | ||
// these all match regular non-vue ESLint rules, | ||
// but makes them apply to js within the vue template. | ||
'vue/array-bracket-spacing': ['error', 'never'], | ||
'vue/arrow-spacing': ['error', { before: true, after: true }], | ||
'vue/block-spacing': ['error', 'always'], | ||
'vue/brace-style': ['error', '1tbs', { allowSingleLine: true }], | ||
'vue/camelcase': ['error', { | ||
properties: 'never', // Ignore snake_case in JSON properties, which are often params. | ||
allow: ['^opt_'], // Allow opt_varname arguments. | ||
}], | ||
'vue/comma-spacing': ['error', { before: false, after: true }], | ||
'vue/comma-style': ['error', 'last'], | ||
'vue/dot-location': ['error', 'property'], | ||
'vue/dot-notation': ['error', { allowKeywords: true }], | ||
'vue/eqeqeq': ['error', 'always', { null: 'ignore' }], | ||
'vue/func-call-spacing': ['error', 'never'], | ||
'vue/key-spacing': ['error', { beforeColon: false, afterColon: true }], | ||
'vue/keyword-spacing': ['error', { before: true, after: true }], | ||
'vue/no-constant-condition': ['error', { checkLoops: false }], | ||
'vue/no-empty-pattern': 'error', | ||
'vue/no-extra-parens': ['error', 'functions'], | ||
'vue/no-irregular-whitespace': 'error', | ||
'vue/no-sparse-arrays': 'error', | ||
'vue/object-curly-newline': ['error', { multiline: true, consistent: true }], | ||
'vue/object-curly-spacing': ['error', 'always'], | ||
'vue/object-property-newline': ['error', { allowMultiplePropertiesPerLine: true }], | ||
'vue/operator-linebreak': ['error', 'after', { overrides: { '?': 'before', ':': 'before', '|>': 'before' } }], | ||
'vue/prefer-template': ['error'], | ||
'vue/space-in-parens': ['error', 'never'], | ||
'vue/space-infix-ops': 'error', | ||
'vue/space-unary-ops': ['error', { words: true, nonwords: false }], | ||
'vue/template-curly-spacing': ['error', 'never'], | ||
'vue/no-v-html': 'off', | ||
'jest/expect-expect': 'off', | ||
'vue/max-attributes-per-line': ['warn', { | ||
singleline: { | ||
max: 8, | ||
}, | ||
multiline: { | ||
max: 1, | ||
}, | ||
}], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Build generated files # | ||
###################### | ||
docs/assets/css | ||
docs/assets/fonts | ||
docs/.vuepress/public/fonts | ||
docs/_includes/icons | ||
docs/_includes/patterns | ||
docs/_includes/spot | ||
|
||
# OS generated files # | ||
###################### | ||
.DS_Store | ||
|
||
# NPM # | ||
############### | ||
node_modules | ||
|
||
# Environment normalization # | ||
############### | ||
/docs/.bundle | ||
/docs/vendor/bundle | ||
|
||
# VuePress # | ||
.temp | ||
.cache | ||
docs/.vuepress/dist |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...altone/docs/.vuepress/common/constants.js → ...tation/docs/.vuepress/common/constants.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.