Skip to content

Commit 4eceeba

Browse files
committed
Fix CSS comments
1 parent 80353d4 commit 4eceeba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+221
-111
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ repos:
5353
- .github/LICENSE_HEADER.md
5454
- --use-current-year
5555
- --comment-style
56-
- "//"
56+
- "/*| *| */"
5757
types_or: [javascript, jsx, ts, tsx, css]
5858

5959
- repo: https://github.com/psf/black

feedingwebapp/.eslintrc.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
// Copyright (c) 2024, Personal Robotics Laboratory
2-
// License: BSD 3-Clause. See LICENSE.md file in root directory.
1+
/*
2+
* Copyright (c) 2024, Personal Robotics Laboratory
3+
* License: BSD 3-Clause. See LICENSE.md file in root directory.
4+
*/
35

46
module.exports = {
57
root: true,

feedingwebapp/server.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
// Copyright (c) 2024, Personal Robotics Laboratory
2-
// License: BSD 3-Clause. See LICENSE.md file in root directory.
1+
/*
2+
* Copyright (c) 2024, Personal Robotics Laboratory
3+
* License: BSD 3-Clause. See LICENSE.md file in root directory.
4+
*/
35

46
/**
57
* Adapted from https://github.com/coding-with-chaim/webrtc-one-to-many/tree/master

feedingwebapp/src/App.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
// Copyright (c) 2024, Personal Robotics Laboratory
2-
// License: BSD 3-Clause. See LICENSE.md file in root directory.
1+
/*
2+
* Copyright (c) 2024, Personal Robotics Laboratory
3+
* License: BSD 3-Clause. See LICENSE.md file in root directory.
4+
*/
35

46
.App {
57
text-align: center;

feedingwebapp/src/App.jsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
// Copyright (c) 2024, Personal Robotics Laboratory
2-
// License: BSD 3-Clause. See LICENSE.md file in root directory.
1+
/*
2+
* Copyright (c) 2024, Personal Robotics Laboratory
3+
* License: BSD 3-Clause. See LICENSE.md file in root directory.
4+
*/
35

46
// React imports
57
import './App.css'

feedingwebapp/src/Pages/Constants.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
// Copyright (c) 2024, Personal Robotics Laboratory
2-
// License: BSD 3-Clause. See LICENSE.md file in root directory.
1+
/*
2+
* Copyright (c) 2024, Personal Robotics Laboratory
3+
* License: BSD 3-Clause. See LICENSE.md file in root directory.
4+
*/
35

46
import { MEAL_STATE } from './GlobalState'
57

feedingwebapp/src/Pages/Footer/Footer.jsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
// Copyright (c) 2024, Personal Robotics Laboratory
2-
// License: BSD 3-Clause. See LICENSE.md file in root directory.
1+
/*
2+
* Copyright (c) 2024, Personal Robotics Laboratory
3+
* License: BSD 3-Clause. See LICENSE.md file in root directory.
4+
*/
35

46
// React imports
57
import React, { useCallback } from 'react'

feedingwebapp/src/Pages/GlobalState.jsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
// Copyright (c) 2024, Personal Robotics Laboratory
2-
// License: BSD 3-Clause. See LICENSE.md file in root directory.
1+
/*
2+
* Copyright (c) 2024, Personal Robotics Laboratory
3+
* License: BSD 3-Clause. See LICENSE.md file in root directory.
4+
*/
35

46
/**
57
* zustand is a state management system for React apps. It lets us manage global

feedingwebapp/src/Pages/Header/Header.jsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
// Copyright (c) 2024, Personal Robotics Laboratory
2-
// License: BSD 3-Clause. See LICENSE.md file in root directory.
1+
/*
2+
* Copyright (c) 2024, Personal Robotics Laboratory
3+
* License: BSD 3-Clause. See LICENSE.md file in root directory.
4+
*/
35

46
// React imports
57
import React, { useCallback, useEffect, useState } from 'react'

feedingwebapp/src/Pages/Header/InfoModal.jsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
// Copyright (c) 2024, Personal Robotics Laboratory
2-
// License: BSD 3-Clause. See LICENSE.md file in root directory.
1+
/*
2+
* Copyright (c) 2024, Personal Robotics Laboratory
3+
* License: BSD 3-Clause. See LICENSE.md file in root directory.
4+
*/
35

46
// React imports
57
import React, { useCallback, useMemo, useState } from 'react'

0 commit comments

Comments
 (0)