Skip to content

Commit fa133bb

Browse files
committed
🐣 release: commit first
0 parents  commit fa133bb

17 files changed

+5555
-0
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
./lib
2+
./jest.config.js
3+
./test/fixtures

.eslintrc.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
'use strict'
2+
3+
module.exports = {
4+
root: true,
5+
env: {
6+
node: true,
7+
jest: true
8+
},
9+
extends: [
10+
'plugin:vue-libs/recommended'
11+
],
12+
plugins: [
13+
'@typescript-eslint'
14+
],
15+
parser: 'vue-eslint-parser',
16+
parserOptions: {
17+
parser: '@typescript-eslint/parser',
18+
sourceType: 'module'
19+
},
20+
rules: {
21+
'no-unused-vars': 'off', // HACK: due to override with @typescript-eslint/no-unused-vars
22+
'@typescript-eslint/no-unused-vars': [2, { 'vars': 'all', 'args': 'none' }]
23+
}
24+
}

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
coverage
2+
node_modules
3+
.DS_Store
4+
*.log
5+
*.swp
6+
*~

.mergify.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
pull_request_rules:
2+
- name: merge pull requests from dependabot if CI passes
3+
conditions:
4+
- author=dependabot[bot]
5+
- status-success=ci/circleci
6+
actions:
7+
merge:
8+
method: merge

.npmignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.*
2+
*.log
3+
*.swp
4+
*.yml
5+
coverage
6+
__snapshots__
7+
test

LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2019 kazuya kawaguchi
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
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, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# vue-i18n-locale-message
2+
3+
i18n locale messages management tool for vue-i18n
4+
5+
:construction_worker: WIP
6+
7+
## :white_check_mark: TODO
8+
- [ ] API design
9+
- [ ] extract locale messages from SFC
10+
- [ ] infuse to SFC from locale mesasges
11+
- [ ] CLI tool
12+
- [ ] integrate vue-cli-plugin-i18n
13+
- [ ] documentation
14+
15+
## :copyright: License
16+
17+
[MIT](http://opensource.org/licenses/MIT)

jest.config.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
'use strict'
2+
3+
module.exports = {
4+
preset: 'ts-jest',
5+
testEnvironment: 'node',
6+
coveragePathIgnorePatterns: [
7+
'node_modules',
8+
'<rootDir>/test/*.*'
9+
],
10+
globals: {
11+
'ts-jest': {
12+
diagnostics: false
13+
}
14+
}
15+
}

lib/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"use strict";
2+
Object.defineProperty(exports, "__esModule", { value: true });
3+
exports.default = {};

0 commit comments

Comments
 (0)