Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaulo Moura <itsme@paulomoura.com>2017-07-20 21:12:42 +0300
committerMorris Jobke <hey@morrisjobke.de>2017-08-26 15:40:01 +0300
commit0c9a4f043b2a32a8dec18d28468a32229f1a0851 (patch)
treee687fc6e39151e351910a5cca281b2c2ef723e71 /.eslintrc
parent472dce8fea685150bd08c5c69f0659acbfbf6b33 (diff)
remove vendor files from repo and starting using yarn for handling, use slim versions instead of the whole libraries
Diffstat (limited to '.eslintrc')
-rw-r--r--.eslintrc34
1 files changed, 34 insertions, 0 deletions
diff --git a/.eslintrc b/.eslintrc
new file mode 100644
index 00000000..40e91cf6
--- /dev/null
+++ b/.eslintrc
@@ -0,0 +1,34 @@
+{
+ "rules": {
+ "indent": [
+ 2,
+ "tab"
+ ],
+ "quotes": [
+ 2,
+ "single"
+ ],
+ "linebreak-style": [
+ 2,
+ "unix"
+ ],
+ "semi": [
+ 2,
+ "always"
+ ]
+ },
+ "globals": {
+ "define": true,
+ "ENV": true,
+ "ASSETSLOCATION": true,
+ "PROTOCOL": true
+ },
+ "env": {
+ "es6": false,
+ "node": false,
+ "browser": true
+ },
+ "plugins": ["requirejs"],
+
+ "extends": "eslint:recommended"
+}