Skip to content

Commit 81f88fb

Browse files
committed
Initial commit
0 parents  commit 81f88fb

12 files changed

+19707
-0
lines changed

Diff for: .eslintrc.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
'cypress/globals': true,
5+
browser: true,
6+
node: true
7+
},
8+
plugins: [
9+
'cypress',
10+
'vuejs-accessibility'
11+
],
12+
extends: [
13+
'plugin:vue/recommended',
14+
'@vue/standard',
15+
'plugin:vuejs-accessibility/recommended'
16+
],
17+
parserOptions: {
18+
parser: 'babel-eslint'
19+
},
20+
rules: {
21+
'no-console': 'off'
22+
}
23+
}

Diff for: .gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
dist
3+
.temp
4+
demo/vue-focus-loop.js

Diff for: LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Vue A11Y
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Diff for: README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [@vue-a11y/focus-loop](https://focus-loop.vue-a11y.com)
2+

Diff for: cypress.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"baseUrl": "http://localhost:8080",
3+
"fixturesFolder": "tests/e2e/fixtures",
4+
"screenshotsFolder": "tests/e2e/screenshots",
5+
"integrationFolder": "tests/e2e/integration",
6+
"fileServerFolder": "demo",
7+
"pluginsFile": false,
8+
"supportFile": "tests/e2e/support"
9+
}

Diff for: jest.config.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
moduleNameMapper: {
3+
'^@/(.*)$': '<rootDir>/$1',
4+
'^vue$': 'vue/dist/vue.common.js'
5+
},
6+
moduleFileExtensions: ['js', 'vue', 'json'],
7+
testMatch: [
8+
'**/(*.)test.(js|jsx|ts|tsx)'
9+
],
10+
transform: {
11+
'^.+\\.js$': 'babel-jest',
12+
'.*\\.(vue)$': 'vue-jest'
13+
}
14+
}

0 commit comments

Comments
 (0)