summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDevlin Junker <devlin.junker@gmail.com>2023-09-25 13:15:14 -0700
committerBenjamin Brahmer <info@b-brahmer.de>2023-10-01 10:28:29 +0200
commite16ab4a3641bad7762a9e0ce2f1c66943cd8298b (patch)
tree13beba326ce16e288be7018fc721ce3caf3fff87 /docs
parent2ebd898a1b049e6f4dbd3f8a2ca5ff2d04814bb1 (diff)
add warning message generated with PHP, also check for subcribe_to parameter
Signed-off-by: Devlin Junker <devlin.junker@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/developer.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/developer.md b/docs/developer.md
index 50f82db1d..0d8f26f04 100644
--- a/docs/developer.md
+++ b/docs/developer.md
@@ -20,7 +20,7 @@ The PHP code should all adhere to [PSR-2](https://www.php-fig.org/psr/psr-2/).
*Note that this is a different codestyle than Nextcloud itself uses.*
To test the codestyle you can run `make phpcs`.
-For linting JavaScript, a [jshint file](https://github.com/nextcloud/news/blob/master/js/.jshintrc) is used that is run before compiling the JavaScript.
+The application Front End uses Vue 2.7 and the Nextcloud Libraries [Vue Components](https://github.com/nextcloud-libraries/nextcloud-vue) for building the Application running inside your Nextcloud instance. For linting these files, we are using eslint, see the [config file](https://github.com/nextcloud/news/blob/master/.eslintrc.js). We also have Unit Tests for the components that run with Jest, please ensure these pass when adding new features/fixing bugs.
## General Developer setup
Check the Nextcloud [documentation](https://docs.nextcloud.com/server/latest/developer_manual/getting_started/devenv.html) to learn how to setup a developer environment, alternatively to a proper web server you can also use the [builtin php server](https://www.php.net/manual/en/features.commandline.webserver.php) on demand, it is enough for development purposes.