Коммит
62dabf4e13
|
@ -0,0 +1,12 @@
|
||||||
|
# http://editorconfig.org
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = false
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
trim_trailing_whitespace = false
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"rules": {
|
||||||
|
"indent": [
|
||||||
|
2,
|
||||||
|
4
|
||||||
|
],
|
||||||
|
"quotes": [
|
||||||
|
2,
|
||||||
|
"double"
|
||||||
|
],
|
||||||
|
"linebreak-style": [
|
||||||
|
2,
|
||||||
|
"windows"
|
||||||
|
],
|
||||||
|
"semi": [
|
||||||
|
2,
|
||||||
|
"always"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"env": {
|
||||||
|
"node": true
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
module.exports = function (grunt) {
|
||||||
|
require('time-grunt')(grunt);
|
||||||
|
// Load grunt tasks automatically
|
||||||
|
require('load-grunt-tasks')(grunt);
|
||||||
|
|
||||||
|
grunt.initConfig({
|
||||||
|
eslint: {
|
||||||
|
src: ['lib/*.js', 'test/*.js'],
|
||||||
|
options: {
|
||||||
|
configFile: '.eslintrc'
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
grunt.registerTask('lint', ['eslint']);
|
||||||
|
grunt.registerTask('default', 'lint');
|
||||||
|
};
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "documentdb",
|
"name": "documentdb",
|
||||||
"description": "Node.js client for documentdb",
|
"description": "Node.js client for documentdb",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"documentdb",
|
"documentdb",
|
||||||
"document database",
|
"document database",
|
||||||
"azure",
|
"azure",
|
||||||
|
@ -16,12 +16,22 @@
|
||||||
"node": ">=0.8"
|
"node": ">=0.8"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"mocha": "*",
|
"eslint": "*",
|
||||||
|
"grunt": "^0.4.5",
|
||||||
|
"grunt-eslint": "^13.0.0",
|
||||||
"jsdoc": "*",
|
"jsdoc": "*",
|
||||||
"eslint": "*"
|
"load-grunt-tasks": "^3.1.0",
|
||||||
|
"mocha": "*",
|
||||||
|
"time-grunt": "^1.2.0"
|
||||||
},
|
},
|
||||||
"repository" : { "type" : "git",
|
"repository": {
|
||||||
"url" : "https://github.com/Azure/azure-documentdb-node" },
|
"type": "git",
|
||||||
"licenses" : [ { "type" : "Apache License, Version 2.0",
|
"url": "https://github.com/Azure/azure-documentdb-node"
|
||||||
"url" : "http://www.apache.org/licenses/LICENSE-2.0" } ]
|
},
|
||||||
|
"licenses": [
|
||||||
|
{
|
||||||
|
"type": "Apache License, Version 2.0",
|
||||||
|
"url": "http://www.apache.org/licenses/LICENSE-2.0"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче