-
-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #510 from nextcloud/enh/vue-rewrite
[WIP] Rewrite UI in Vue.js
- Loading branch information
Showing
110 changed files
with
35,501 additions
and
15,518 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 |
---|---|---|
@@ -1,26 +1,16 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
node: true | ||
}, | ||
extends: [ | ||
"nextcloud" | ||
], | ||
rules: { | ||
"vue/component-name-in-template-casing": ["error", "PascalCase"], | ||
"no-console": process.env.NODE_ENV === "production" ? "error" : "off", | ||
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off" | ||
}, | ||
globals: { | ||
OC: false, | ||
OCA: false, | ||
t: false, | ||
n: false, | ||
$: false // TODO: remove once jQuery has been removed | ||
}, | ||
parserOptions: { | ||
ecmaVersion: 6, | ||
sourceType: "module", | ||
parser: "babel-eslint" | ||
} | ||
}; | ||
globals: { | ||
appVersion: true | ||
}, | ||
parserOptions: { | ||
requireConfigFile: false | ||
}, | ||
extends: [ | ||
'@nextcloud' | ||
], | ||
rules: { | ||
'jsdoc/require-jsdoc': 'off', | ||
'jsdoc/tag-lines': 'off', | ||
'vue/first-attribute-linebreak': 'off' | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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
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
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
Oops, something went wrong.