Using grid layout with thumbnails.

This commit is contained in:
2019-05-08 05:50:13 +02:00
parent 8eb2dcfd89
commit e3558fc0c5
13 changed files with 412 additions and 40 deletions

View File

@@ -1,15 +1,21 @@
{
"root": true,
"parser": "babel-eslint",
"extends": "airbnb-base",
"extends": ["airbnb", "plugin:react/recommended"],
"plugins": ["react"],
"parserOptions": {
"sourceType": "script",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"strict": 0,
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
"no-console": 0,
"indent": ["error", 4],
"max-len": [2, {"code": 200, "tabWidth": 4, "ignoreUrls": true}]
"max-len": [2, {"code": 200, "tabWidth": 4, "ignoreUrls": true}],
"react/jsx-uses-vars": 2,
"react/jsx-indent": ["error", 4],
}
}